Merge pull request #67 from spk121/spk121

Fix debug message format string
This commit is contained in:
Alexander Larsson
2015-04-23 08:34:45 +02:00

View File

@@ -584,7 +584,7 @@ load_contents (const char *uri, GBytes **contents, GCancellable *cancellable, GE
ret = TRUE;
g_debug ("Received %ld bytes", g_bytes_get_size (*contents));
g_debug ("Received %" G_GSIZE_FORMAT " bytes", g_bytes_get_size (*contents));
out:
return ret;