From 6e331453320d6b85c82fadbb1a8fad06722ba5c2 Mon Sep 17 00:00:00 2001 From: Jean-Philippe Andre Date: Tue, 20 Jun 2017 14:16:40 +0900 Subject: [PATCH] examples/net: Use PRIi64 where appropriate Fixes a warning on Windows. Thanks @vtorri --- src/examples/ecore/efl_net_dialer_http_example.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/examples/ecore/efl_net_dialer_http_example.c b/src/examples/ecore/efl_net_dialer_http_example.c index ca2f03b..effaeef 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, -- 2.7.4