Make it take a guint for number of characters, instead of a gsize.

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.
This commit is contained in:
Manish Singh 2004-09-17 01:14:10 +00:00 committed by Manish Singh
parent 465c7d1ead
commit e24b2f8cb5
6 changed files with 36 additions and 1 deletions

View 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

View 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

View 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

View 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

View 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

View 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);