filter G_GNUC before PRIVATE so $ is still true.
authorManish Singh <yosh@gimp.org>
Sun, 28 Nov 2004 21:21:14 +0000 (21:21 +0000)
committerManish Singh <yosh@src.gnome.org>
Sun, 28 Nov 2004 21:21:14 +0000 (21:21 +0000)
Sun Nov 28 13:13:56 2004  Manish Singh  <yosh@gimp.org>

        * glib/abicheck.sh: filter G_GNUC before PRIVATE so $ is still true.

        * tests/utf8-validate.c: cast pointer math to gint for error print
        message.

ChangeLog
ChangeLog.pre-2-10
ChangeLog.pre-2-12
ChangeLog.pre-2-6
ChangeLog.pre-2-8
glib/abicheck.sh
tests/utf8-validate.c

index 33ac8a3..1c72868 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+Sun Nov 28 13:13:56 2004  Manish Singh  <yosh@gimp.org>
+
+       * glib/abicheck.sh: filter G_GNUC before PRIVATE so $ is still true.
+
+       * tests/utf8-validate.c: cast pointer math to gint for error print
+       message.
+
 Sun Nov 28 12:07:29 2004  Manish Singh  <yosh@gimp.org>
 
        * tests/utf8-validate.c: minor comment fix.
index 33ac8a3..1c72868 100644 (file)
@@ -1,3 +1,10 @@
+Sun Nov 28 13:13:56 2004  Manish Singh  <yosh@gimp.org>
+
+       * glib/abicheck.sh: filter G_GNUC before PRIVATE so $ is still true.
+
+       * tests/utf8-validate.c: cast pointer math to gint for error print
+       message.
+
 Sun Nov 28 12:07:29 2004  Manish Singh  <yosh@gimp.org>
 
        * tests/utf8-validate.c: minor comment fix.
index 33ac8a3..1c72868 100644 (file)
@@ -1,3 +1,10 @@
+Sun Nov 28 13:13:56 2004  Manish Singh  <yosh@gimp.org>
+
+       * glib/abicheck.sh: filter G_GNUC before PRIVATE so $ is still true.
+
+       * tests/utf8-validate.c: cast pointer math to gint for error print
+       message.
+
 Sun Nov 28 12:07:29 2004  Manish Singh  <yosh@gimp.org>
 
        * tests/utf8-validate.c: minor comment fix.
index 33ac8a3..1c72868 100644 (file)
@@ -1,3 +1,10 @@
+Sun Nov 28 13:13:56 2004  Manish Singh  <yosh@gimp.org>
+
+       * glib/abicheck.sh: filter G_GNUC before PRIVATE so $ is still true.
+
+       * tests/utf8-validate.c: cast pointer math to gint for error print
+       message.
+
 Sun Nov 28 12:07:29 2004  Manish Singh  <yosh@gimp.org>
 
        * tests/utf8-validate.c: minor comment fix.
index 33ac8a3..1c72868 100644 (file)
@@ -1,3 +1,10 @@
+Sun Nov 28 13:13:56 2004  Manish Singh  <yosh@gimp.org>
+
+       * glib/abicheck.sh: filter G_GNUC before PRIVATE so $ is still true.
+
+       * tests/utf8-validate.c: cast pointer math to gint for error print
+       message.
+
 Sun Nov 28 12:07:29 2004  Manish Singh  <yosh@gimp.org>
 
        * tests/utf8-validate.c: minor comment fix.
index 046a250..a9bead4 100755 (executable)
@@ -1,5 +1,5 @@
 #! /bin/sh
 
-cpp -P -DG_OS_UNIX -DINCLUDE_INTERNAL_SYMBOLS ${srcdir:-.}/glib.symbols | sed -e '/^$/d' -e 's/ PRIVATE$//' -e 's/ G_GNUC.*$//' | sort > expected-abi
+cpp -P -DG_OS_UNIX -DINCLUDE_INTERNAL_SYMBOLS ${srcdir:-.}/glib.symbols | sed -e '/^$/d' -e 's/ G_GNUC.*$//' -e 's/ PRIVATE$//' | sort > expected-abi
 nm -D .libs/libglib-2.0.so | grep " T " | cut -d ' ' -f 3 | sort > actual-abi
 diff -u expected-abi actual-abi && rm expected-abi actual-abi
index ab9a5b2..98f0b1f 100644 (file)
@@ -301,7 +301,7 @@ do_test (gint         index,
               index,
               str->str, max_len, 
               valid ? "TRUE" : "FALSE", offset,
-              result ? "TRUE" : "FALSE", end - text);
+              result ? "TRUE" : "FALSE", (gint) (end - text));
       g_string_free (str, FALSE);
     }
 }