summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorManish Singh <yosh@gimp.org>2004-09-17 01:14:10 +0000
committerManish Singh <yosh@src.gnome.org>2004-09-17 01:14:10 +0000
commite24b2f8cb5f4ab304a54b7d10840604c15ba1fc3 (patch)
tree53c96568275cb72c7662e8e92101559655db850b
parent465c7d1ead296b70b8d47ca333554a18f71da11d (diff)
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.
-rw-r--r--ChangeLog7
-rw-r--r--ChangeLog.pre-2-107
-rw-r--r--ChangeLog.pre-2-127
-rw-r--r--ChangeLog.pre-2-67
-rw-r--r--ChangeLog.pre-2-87
-rw-r--r--glib/gstrfuncs.c2
6 files changed, 36 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 4b229d14f..017d1f669 100644
--- 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
diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10
index 4b229d14f..017d1f669 100644
--- a/ChangeLog.pre-2-10
+++ b/ChangeLog.pre-2-10
@@ -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
diff --git a/ChangeLog.pre-2-12 b/ChangeLog.pre-2-12
index 4b229d14f..017d1f669 100644
--- a/ChangeLog.pre-2-12
+++ b/ChangeLog.pre-2-12
@@ -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
diff --git a/ChangeLog.pre-2-6 b/ChangeLog.pre-2-6
index 4b229d14f..017d1f669 100644
--- a/ChangeLog.pre-2-6
+++ b/ChangeLog.pre-2-6
@@ -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
diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8
index 4b229d14f..017d1f669 100644
--- a/ChangeLog.pre-2-8
+++ b/ChangeLog.pre-2-8
@@ -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
diff --git a/glib/gstrfuncs.c b/glib/gstrfuncs.c
index d3d4c488d..a1f312302 100644
--- a/glib/gstrfuncs.c
+++ b/glib/gstrfuncs.c
@@ -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);