Fix debug message format string

The format string %ld is incorrect for i686

* xdg-app-utils.c (load_contents): modify format string
This commit is contained in:
Mike Gran
2015-04-22 14:43:25 -07:00
parent fb0948021d
commit 7b6a9a8d96

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;