Make it take a guint for number of characters, instead of a gsize.
authorManish Singh <yosh@gimp.org>
Fri, 17 Sep 2004 01:14:10 +0000 (01:14 +0000)
committerManish Singh <yosh@src.gnome.org>
Fri, 17 Sep 2004 01:14:10 +0000 (01:14 +0000)
Thu Sep 16 18:15:32 2004  Manish Singh  <yosh@gimp.org>

        * glib/gstrfuncs.c (g_strncasecmp): Make it take a guint for number
        of characters, instead of a gsize. Technically this is incorrect,
        but this makes it match the prototype, and this is a deprecated
        function anyway.

ChangeLog
ChangeLog.pre-2-10
ChangeLog.pre-2-12
ChangeLog.pre-2-6
ChangeLog.pre-2-8
glib/gstrfuncs.c

index 4b229d1..017d1f6 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+Thu Sep 16 18:15:32 2004  Manish Singh  <yosh@gimp.org>
+
+       * glib/gstrfuncs.c (g_strncasecmp): Make it take a guint for number
+       of characters, instead of a gsize. Technically this is incorrect,
+       but this makes it match the prototype, and this is a deprecated
+       function anyway.
+
 2004-09-16  Matthias Clasen  <mclasen@redhat.com>
 
        * glib/Makefile.am (EXTRA_DIST): Add abicheck.sh
index 4b229d1..017d1f6 100644 (file)
@@ -1,3 +1,10 @@
+Thu Sep 16 18:15:32 2004  Manish Singh  <yosh@gimp.org>
+
+       * glib/gstrfuncs.c (g_strncasecmp): Make it take a guint for number
+       of characters, instead of a gsize. Technically this is incorrect,
+       but this makes it match the prototype, and this is a deprecated
+       function anyway.
+
 2004-09-16  Matthias Clasen  <mclasen@redhat.com>
 
        * glib/Makefile.am (EXTRA_DIST): Add abicheck.sh
index 4b229d1..017d1f6 100644 (file)
@@ -1,3 +1,10 @@
+Thu Sep 16 18:15:32 2004  Manish Singh  <yosh@gimp.org>
+
+       * glib/gstrfuncs.c (g_strncasecmp): Make it take a guint for number
+       of characters, instead of a gsize. Technically this is incorrect,
+       but this makes it match the prototype, and this is a deprecated
+       function anyway.
+
 2004-09-16  Matthias Clasen  <mclasen@redhat.com>
 
        * glib/Makefile.am (EXTRA_DIST): Add abicheck.sh
index 4b229d1..017d1f6 100644 (file)
@@ -1,3 +1,10 @@
+Thu Sep 16 18:15:32 2004  Manish Singh  <yosh@gimp.org>
+
+       * glib/gstrfuncs.c (g_strncasecmp): Make it take a guint for number
+       of characters, instead of a gsize. Technically this is incorrect,
+       but this makes it match the prototype, and this is a deprecated
+       function anyway.
+
 2004-09-16  Matthias Clasen  <mclasen@redhat.com>
 
        * glib/Makefile.am (EXTRA_DIST): Add abicheck.sh
index 4b229d1..017d1f6 100644 (file)
@@ -1,3 +1,10 @@
+Thu Sep 16 18:15:32 2004  Manish Singh  <yosh@gimp.org>
+
+       * glib/gstrfuncs.c (g_strncasecmp): Make it take a guint for number
+       of characters, instead of a gsize. Technically this is incorrect,
+       but this makes it match the prototype, and this is a deprecated
+       function anyway.
+
 2004-09-16  Matthias Clasen  <mclasen@redhat.com>
 
        * glib/Makefile.am (EXTRA_DIST): Add abicheck.sh
index d3d4c48..a1f3123 100644 (file)
@@ -1876,7 +1876,7 @@ g_strcasecmp (const gchar *s1,
 gint
 g_strncasecmp (const gchar *s1,
               const gchar *s2,
-              gsize n)     
+              guint n)     
 {
 #ifdef HAVE_STRNCASECMP
   return strncasecmp (s1, s2, n);