summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJean-Philippe Andre <jp.andre@samsung.com>2017-06-20 14:16:40 +0900
committerJean-Philippe Andre <jp.andre@samsung.com>2017-06-20 14:16:40 +0900
commit6e331453320d6b85c82fadbb1a8fad06722ba5c2 (patch)
treee41725968162b3b5f91a6f7412641c755a7f1b4a
parent98b1309c6fc155fe28ed070239f37c38b5159bee (diff)
downloadefl-6e331453320d6b85c82fadbb1a8fad06722ba5c2.tar.gz
examples/net: Use PRIi64 where appropriate
Fixes a warning on Windows. Thanks @vtorri
-rw-r--r--src/examples/ecore/efl_net_dialer_http_example.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/examples/ecore/efl_net_dialer_http_example.c b/src/examples/ecore/efl_net_dialer_http_example.c
index ca2f03b9a4..effaeef2a4 100644
--- a/src/examples/ecore/efl_net_dialer_http_example.c
+++ b/src/examples/ecore/efl_net_dialer_http_example.c
@@ -69,7 +69,7 @@ _http_headers_done(void *data EINA_UNUSED, const Efl_Event *event)
efl_net_dialer_http_response_content_type_get(o),
efl_net_dialer_http_response_content_length_get(o));
- fprintf(stderr, "INFO: to upload %zd bytes\n", efl_net_dialer_http_request_content_length_get(o));
+ fprintf(stderr, "INFO: to upload %"PRIi64" bytes\n", efl_net_dialer_http_request_content_length_get(o));
}
EFL_CALLBACKS_ARRAY_DEFINE(dialer_cbs,