summaryrefslogtreecommitdiff
path: root/gstrfuncs.c
diff options
context:
space:
mode:
authorManish Singh <yosh@src.gnome.org>1998-11-01 04:19:54 +0000
committerManish Singh <yosh@src.gnome.org>1998-11-01 04:19:54 +0000
commit7e046917266805e0ddeb60f07b98ea82d9e8c1ac (patch)
treec8c6b46df6588b400d080fd771cb5131d86f5ffd /gstrfuncs.c
parent5900267cc7bfe0641709d43eaba28f6b0ff7ab0d (diff)
downloadglib-7e046917266805e0ddeb60f07b98ea82d9e8c1ac.tar.gz
applied glib-tml-981101-1 patch from Tor Lillqvist (ChangeLog entry
* applied glib-tml-981101-1 patch from Tor Lillqvist (ChangeLog entry appended below) * testglib.c * gstrfuncs.c * glib.h: use G_HAVE_GINT64, since HAVE_GINT64 is gone * gmessages.c * gscanner.c: #include <config.h> in here too, for HAVE_UNISTD_H -Yosh
Diffstat (limited to 'gstrfuncs.c')
-rw-r--r--gstrfuncs.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gstrfuncs.c b/gstrfuncs.c
index 01816b359..c01877bd7 100644
--- a/gstrfuncs.c
+++ b/gstrfuncs.c
@@ -828,11 +828,11 @@ g_printf_string_upper_bound (const gchar* format,
case 'u':
case 'x':
case 'X':
-#ifdef HAVE_GINT64
+#ifdef G_HAVE_GINT64
if (extra_long)
(void) va_arg (args, gint64);
else
-#endif /* HAVE_GINT64 */
+#endif /* G_HAVE_GINT64 */
{
if (long_int)
(void) va_arg (args, long);