From: Ryan Lortie Date: Tue, 1 May 2012 20:48:52 +0000 (-0700) Subject: slice-color test: don't use non-existent macro X-Git-Tag: 2.33.1~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=774074f99bcc6237290e5252faf24581d7fe9932;p=platform%2Fupstream%2Fglib.git slice-color test: don't use non-existent macro G_GUINT64_MODIFIER doesn't exist, but G_GINT64_MODIFIER does (and will be the same as is needed for unsigned). --- diff --git a/tests/slice-color.c b/tests/slice-color.c index 6245f5b..ecd38d1 100644 --- a/tests/slice-color.c +++ b/tests/slice-color.c @@ -136,7 +136,7 @@ main (int argc, return 1; } - g_printerr ("Will allocate and touch %" G_GUINT64_FORMAT " blocks of %" G_GUINT64_FORMAT " bytes (= %" G_GUINT64_FORMAT " bytes) %" G_GUINT64_FORMAT " times with color increment: 0x%08" G_GUINT64_MODIFIER "x\n", + g_printerr ("Will allocate and touch %" G_GUINT64_FORMAT " blocks of %" G_GUINT64_FORMAT " bytes (= %" G_GUINT64_FORMAT " bytes) %" G_GUINT64_FORMAT " times with color increment: 0x%08" G_GINT64_MODIFIER "x\n", n_blocks, block_size, n_blocks * block_size, repeats, (guint64)g_slice_get_config (G_SLICE_CONFIG_COLOR_INCREMENT));