Fix typo. Missing '%' in my last commit.

Fri Dec 13 17:10:21 2002  Manish Singh  <yosh@gimp.org>

        * glib/gscanner.c (g_scanner_unexp_token): Fix typo. Missing '%'
        in my last commit.
This commit is contained in:
Manish Singh 2002-12-14 01:11:25 +00:00 committed by Manish Singh
parent 9d4af5714a
commit d2064033e6
8 changed files with 36 additions and 1 deletions

View File

@ -1,3 +1,8 @@
Fri Dec 13 17:10:21 2002 Manish Singh <yosh@gimp.org>
* glib/gscanner.c (g_scanner_unexp_token): Fix typo. Missing '%'
in my last commit.
Thu Dec 12 23:08:29 2002 Owen Taylor <otaylor@redhat.com>
Fixes from Johannes Stezenbach

View File

@ -1,3 +1,8 @@
Fri Dec 13 17:10:21 2002 Manish Singh <yosh@gimp.org>
* glib/gscanner.c (g_scanner_unexp_token): Fix typo. Missing '%'
in my last commit.
Thu Dec 12 23:08:29 2002 Owen Taylor <otaylor@redhat.com>
Fixes from Johannes Stezenbach

View File

@ -1,3 +1,8 @@
Fri Dec 13 17:10:21 2002 Manish Singh <yosh@gimp.org>
* glib/gscanner.c (g_scanner_unexp_token): Fix typo. Missing '%'
in my last commit.
Thu Dec 12 23:08:29 2002 Owen Taylor <otaylor@redhat.com>
Fixes from Johannes Stezenbach

View File

@ -1,3 +1,8 @@
Fri Dec 13 17:10:21 2002 Manish Singh <yosh@gimp.org>
* glib/gscanner.c (g_scanner_unexp_token): Fix typo. Missing '%'
in my last commit.
Thu Dec 12 23:08:29 2002 Owen Taylor <otaylor@redhat.com>
Fixes from Johannes Stezenbach

View File

@ -1,3 +1,8 @@
Fri Dec 13 17:10:21 2002 Manish Singh <yosh@gimp.org>
* glib/gscanner.c (g_scanner_unexp_token): Fix typo. Missing '%'
in my last commit.
Thu Dec 12 23:08:29 2002 Owen Taylor <otaylor@redhat.com>
Fixes from Johannes Stezenbach

View File

@ -1,3 +1,8 @@
Fri Dec 13 17:10:21 2002 Manish Singh <yosh@gimp.org>
* glib/gscanner.c (g_scanner_unexp_token): Fix typo. Missing '%'
in my last commit.
Thu Dec 12 23:08:29 2002 Owen Taylor <otaylor@redhat.com>
Fixes from Johannes Stezenbach

View File

@ -1,3 +1,8 @@
Fri Dec 13 17:10:21 2002 Manish Singh <yosh@gimp.org>
* glib/gscanner.c (g_scanner_unexp_token): Fix typo. Missing '%'
in my last commit.
Thu Dec 12 23:08:29 2002 Owen Taylor <otaylor@redhat.com>
Fixes from Johannes Stezenbach

View File

@ -958,7 +958,7 @@ g_scanner_unexp_token (GScanner *scanner,
case G_TOKEN_INT:
case G_TOKEN_HEX:
if (scanner->config->store_int64)
_g_snprintf (token_string, token_string_len, "number `" G_GUINT64_FORMAT "'", scanner->value.v_int64);
_g_snprintf (token_string, token_string_len, "number `%" G_GUINT64_FORMAT "'", scanner->value.v_int64);
else
_g_snprintf (token_string, token_string_len, "number `%lu'", scanner->value.v_int);
break;