Fix broken test for gsize formats.
authorManish Singh <yosh@gimp.org>
Sat, 7 Feb 2004 23:03:35 +0000 (23:03 +0000)
committerManish Singh <yosh@src.gnome.org>
Sat, 7 Feb 2004 23:03:35 +0000 (23:03 +0000)
Sat Feb  7 15:02:01 2004  Manish Singh  <yosh@gimp.org>

        * tests/type-test.c: Fix broken test for gsize formats.

ChangeLog
ChangeLog.pre-2-10
ChangeLog.pre-2-12
ChangeLog.pre-2-4
ChangeLog.pre-2-6
ChangeLog.pre-2-8
tests/type-test.c

index d0ddfaff94e186715b4ebe264472be81656b179d..7e779d59803543d33a6a41c443a513ea896189fa 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Sat Feb  7 15:02:01 2004  Manish Singh  <yosh@gimp.org>
+
+       * tests/type-test.c: Fix broken test for gsize formats.
+
 2004-02-05  Robert Sedak  <robert.sedak@sk.htnet.hr>
 
         * configure.in: Added "hr" (Croatian) to ALL_LINGUAS.
index d0ddfaff94e186715b4ebe264472be81656b179d..7e779d59803543d33a6a41c443a513ea896189fa 100644 (file)
@@ -1,3 +1,7 @@
+Sat Feb  7 15:02:01 2004  Manish Singh  <yosh@gimp.org>
+
+       * tests/type-test.c: Fix broken test for gsize formats.
+
 2004-02-05  Robert Sedak  <robert.sedak@sk.htnet.hr>
 
         * configure.in: Added "hr" (Croatian) to ALL_LINGUAS.
index d0ddfaff94e186715b4ebe264472be81656b179d..7e779d59803543d33a6a41c443a513ea896189fa 100644 (file)
@@ -1,3 +1,7 @@
+Sat Feb  7 15:02:01 2004  Manish Singh  <yosh@gimp.org>
+
+       * tests/type-test.c: Fix broken test for gsize formats.
+
 2004-02-05  Robert Sedak  <robert.sedak@sk.htnet.hr>
 
         * configure.in: Added "hr" (Croatian) to ALL_LINGUAS.
index d0ddfaff94e186715b4ebe264472be81656b179d..7e779d59803543d33a6a41c443a513ea896189fa 100644 (file)
@@ -1,3 +1,7 @@
+Sat Feb  7 15:02:01 2004  Manish Singh  <yosh@gimp.org>
+
+       * tests/type-test.c: Fix broken test for gsize formats.
+
 2004-02-05  Robert Sedak  <robert.sedak@sk.htnet.hr>
 
         * configure.in: Added "hr" (Croatian) to ALL_LINGUAS.
index d0ddfaff94e186715b4ebe264472be81656b179d..7e779d59803543d33a6a41c443a513ea896189fa 100644 (file)
@@ -1,3 +1,7 @@
+Sat Feb  7 15:02:01 2004  Manish Singh  <yosh@gimp.org>
+
+       * tests/type-test.c: Fix broken test for gsize formats.
+
 2004-02-05  Robert Sedak  <robert.sedak@sk.htnet.hr>
 
         * configure.in: Added "hr" (Croatian) to ALL_LINGUAS.
index d0ddfaff94e186715b4ebe264472be81656b179d..7e779d59803543d33a6a41c443a513ea896189fa 100644 (file)
@@ -1,3 +1,7 @@
+Sat Feb  7 15:02:01 2004  Manish Singh  <yosh@gimp.org>
+
+       * tests/type-test.c: Fix broken test for gsize formats.
+
 2004-02-05  Robert Sedak  <robert.sedak@sk.htnet.hr>
 
         * configure.in: Added "hr" (Croatian) to ALL_LINGUAS.
index f8405edd7babf1160d29c7fac2fdb8657870cac7..b808b650ea5f12b78eac59d3cbcacbe15e7e5ef6 100644 (file)
@@ -132,7 +132,7 @@ main (int   argc,
 
 #define FORMATSIZE "%" G_GSSIZE_FORMAT " %" G_GSIZE_FORMAT "\n"
   string = g_strdup_printf (FORMATSIZE, gsst1, gst1);
-  sscanf (string, FORMAT64, &gsst2, &gst2);
+  sscanf (string, FORMATSIZE, &gsst2, &gst2);
   g_free (string);
   g_assert (gsst1 == gsst2);
   g_assert (gst1 == gst2);