aboutsummaryrefslogtreecommitdiff
path: root/dpi/datauri.c
diff options
context:
space:
mode:
authorjcid <devnull@localhost>2008-08-12 22:24:37 +0200
committerjcid <devnull@localhost>2008-08-12 22:24:37 +0200
commit50b3b7b3e576bfcb8682ce7d4b0eb15086c214b4 (patch)
tree8dcfb49b2dc4a3d650bf8cbba160e057ae4fa0bd /dpi/datauri.c
parent9eba6c5572de8bfe82606206e8a44a403d936f32 (diff)
- Eliminated gcc 4.2.3 warnings on 64bit OS.
Diffstat (limited to 'dpi/datauri.c')
-rw-r--r--dpi/datauri.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/dpi/datauri.c b/dpi/datauri.c
index d556f610..1a34482b 100644
--- a/dpi/datauri.c
+++ b/dpi/datauri.c
@@ -296,7 +296,7 @@ int main(void)
data = datauri_get_data(url, &data_size);
MSG("mime_type: %s\n", mime_type);
- MSG("data_size: %d\n", data_size);
+ MSG("data_size: %d\n", (int)data_size);
MSG("data: {%s}\n", data);
if (mime_type && data) {