Ecore: ecore_con: fix warning on Windows
authorcaro <caro@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Mon, 25 Apr 2011 13:10:57 +0000 (13:10 +0000)
committercaro <caro@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Mon, 25 Apr 2011 13:10:57 +0000 (13:10 +0000)
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/ecore@58899 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

src/lib/ecore_con/ecore_con_url.c

index 074b6ce..c8db176 100644 (file)
@@ -1719,7 +1719,11 @@ _ecore_con_url_read_cb(void  *ptr,
         return 0;
      }
 
+#ifdef _WIN32
+   INF("*** We read %Iu bytes from file", retcode);
+#else
    INF("*** We read %zu bytes from file", retcode);
+#endif
    return retcode;
 }