+Sat Sep 29 02:33:14 2001 George Lebl <jirka@5z.com>
+
+ * tests/testglib.c (main): cast the string size to gulong and use %lu
+ for printing to avoid 64bit issues
+
+ * glib/gstrfuncs.[ch] (g_ascii_strncasecmp): Change the 'n' argument
+ to gsize instead guint.
+
Fri Sep 28 19:41:32 2001 Owen Taylor <otaylor@redhat.com>
* glib/libcharset/* configure.in: Fix macros from libcharset
+Sat Sep 29 02:33:14 2001 George Lebl <jirka@5z.com>
+
+ * tests/testglib.c (main): cast the string size to gulong and use %lu
+ for printing to avoid 64bit issues
+
+ * glib/gstrfuncs.[ch] (g_ascii_strncasecmp): Change the 'n' argument
+ to gsize instead guint.
+
Fri Sep 28 19:41:32 2001 Owen Taylor <otaylor@redhat.com>
* glib/libcharset/* configure.in: Fix macros from libcharset
+Sat Sep 29 02:33:14 2001 George Lebl <jirka@5z.com>
+
+ * tests/testglib.c (main): cast the string size to gulong and use %lu
+ for printing to avoid 64bit issues
+
+ * glib/gstrfuncs.[ch] (g_ascii_strncasecmp): Change the 'n' argument
+ to gsize instead guint.
+
Fri Sep 28 19:41:32 2001 Owen Taylor <otaylor@redhat.com>
* glib/libcharset/* configure.in: Fix macros from libcharset
+Sat Sep 29 02:33:14 2001 George Lebl <jirka@5z.com>
+
+ * tests/testglib.c (main): cast the string size to gulong and use %lu
+ for printing to avoid 64bit issues
+
+ * glib/gstrfuncs.[ch] (g_ascii_strncasecmp): Change the 'n' argument
+ to gsize instead guint.
+
Fri Sep 28 19:41:32 2001 Owen Taylor <otaylor@redhat.com>
* glib/libcharset/* configure.in: Fix macros from libcharset
+Sat Sep 29 02:33:14 2001 George Lebl <jirka@5z.com>
+
+ * tests/testglib.c (main): cast the string size to gulong and use %lu
+ for printing to avoid 64bit issues
+
+ * glib/gstrfuncs.[ch] (g_ascii_strncasecmp): Change the 'n' argument
+ to gsize instead guint.
+
Fri Sep 28 19:41:32 2001 Owen Taylor <otaylor@redhat.com>
* glib/libcharset/* configure.in: Fix macros from libcharset
+Sat Sep 29 02:33:14 2001 George Lebl <jirka@5z.com>
+
+ * tests/testglib.c (main): cast the string size to gulong and use %lu
+ for printing to avoid 64bit issues
+
+ * glib/gstrfuncs.[ch] (g_ascii_strncasecmp): Change the 'n' argument
+ to gsize instead guint.
+
Fri Sep 28 19:41:32 2001 Owen Taylor <otaylor@redhat.com>
* glib/libcharset/* configure.in: Fix macros from libcharset
+Sat Sep 29 02:33:14 2001 George Lebl <jirka@5z.com>
+
+ * tests/testglib.c (main): cast the string size to gulong and use %lu
+ for printing to avoid 64bit issues
+
+ * glib/gstrfuncs.[ch] (g_ascii_strncasecmp): Change the 'n' argument
+ to gsize instead guint.
+
Fri Sep 28 19:41:32 2001 Owen Taylor <otaylor@redhat.com>
* glib/libcharset/* configure.in: Fix macros from libcharset
+Sat Sep 29 02:33:14 2001 George Lebl <jirka@5z.com>
+
+ * tests/testglib.c (main): cast the string size to gulong and use %lu
+ for printing to avoid 64bit issues
+
+ * glib/gstrfuncs.[ch] (g_ascii_strncasecmp): Change the 'n' argument
+ to gsize instead guint.
+
Fri Sep 28 19:41:32 2001 Owen Taylor <otaylor@redhat.com>
* glib/libcharset/* configure.in: Fix macros from libcharset
gint
g_ascii_strncasecmp (const gchar *s1,
const gchar *s2,
- guint n)
+ gsize n)
{
gint c1, c2;
const gchar *s2);
gint g_ascii_strncasecmp (const gchar *s1,
const gchar *s2,
- guint n);
+ gsize n);
gchar* g_ascii_strdown (const gchar *str,
gssize len);
gchar* g_ascii_strup (const gchar *str,
10, 666, 15, 15, 666.666666666, 666.666666666);
#endif
- g_print ("string2 length = %d...\n", string2->len);
+ g_print ("string2 length = %lu...\n", (gulong)string2->len);
string2->str[70] = '\0';
g_print ("first 70 chars:\n%s\n", string2->str);
string2->str[141] = '\0';