filter G_GNUC before PRIVATE so $ is still true.

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.
This commit is contained in:
Manish Singh 2004-11-28 21:21:14 +00:00 committed by Manish Singh
parent adde534014
commit 131f4c67fb
7 changed files with 37 additions and 2 deletions

View 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.

View 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.

View 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.

View 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.

View 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.

View File

@ -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

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