summaryrefslogtreecommitdiff
path: root/tests/slice-color.c
diff options
context:
space:
mode:
authorRyan Lortie <desrt@desrt.ca>2012-05-01 13:48:52 -0700
committerRyan Lortie <desrt@desrt.ca>2012-05-01 15:16:05 -0700
commit774074f99bcc6237290e5252faf24581d7fe9932 (patch)
tree868fd59685345d800bfeafc94294c5b72a9c9534 /tests/slice-color.c
parentb31d872081a70817dc036043fef05cd950c4e86f (diff)
downloadglib-774074f99bcc6237290e5252faf24581d7fe9932.tar.gz
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).
Diffstat (limited to 'tests/slice-color.c')
-rw-r--r--tests/slice-color.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/slice-color.c b/tests/slice-color.c
index 6245f5b8c..ecd38d14a 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));