From 968b9d0d939c60362e5295105524f7d2c0243bad Mon Sep 17 00:00:00 2001 From: Yevgen Muntyan <17531749+muntyan@users.noreply.github.com> Date: Wed, 20 Jun 2007 13:46:39 -0500 Subject: [PATCH] Do not print size_t with %u --- moo/moofileview/moofilesystem.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/moo/moofileview/moofilesystem.c b/moo/moofileview/moofilesystem.c index a975698e..7f83026c 100644 --- a/moo/moofileview/moofilesystem.c +++ b/moo/moofileview/moofilesystem.c @@ -225,7 +225,7 @@ debug_timeout (MooFileSystem *fs) { gsize mem[2] = {0, 0}; g_hash_table_foreach (fs->priv->folders, (GHFunc) calc_mem_hash_cb, mem); - g_print ("%u bytes in %u files\n", mem[0], mem[1]); + g_print ("%" G_GSIZE_FORMAT " bytes in %" G_GSIZE_FORMAT " files\n", mem[0], mem[1]); return TRUE; }