aboutsummaryrefslogtreecommitdiff
path: root/lib/memdebug.c
diff options
context:
space:
mode:
authorYang Tse <yangsita@gmail.com>2013-07-24 16:43:13 +0200
committerYang Tse <yangsita@gmail.com>2013-07-24 16:46:24 +0200
commit4fad1943a256fcfbbb74603ba22fe7377e59e003 (patch)
tree534631327cf317970d0cf6dc093dfc73fa5ad435 /lib/memdebug.c
parent4d346673a267c7111c667d5fe2962db09df506d4 (diff)
downloadgnurl-4fad1943a256fcfbbb74603ba22fe7377e59e003.tar.gz
gnurl-4fad1943a256fcfbbb74603ba22fe7377e59e003.tar.bz2
gnurl-4fad1943a256fcfbbb74603ba22fe7377e59e003.zip
string formatting: fix 15+ printf-style format strings
Diffstat (limited to 'lib/memdebug.c')
-rw-r--r--lib/memdebug.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/memdebug.c b/lib/memdebug.c
index f9afae3a7..7d68af874 100644
--- a/lib/memdebug.c
+++ b/lib/memdebug.c
@@ -185,7 +185,7 @@ void *curl_domalloc(size_t wantedsize, int line, const char *source)
}
if(source)
- curl_memlog("MEM %s:%d malloc(%zd) = %p\n",
+ curl_memlog("MEM %s:%d malloc(%zu) = %p\n",
source, line, wantedsize,
mem ? (void *)mem->mem : (void *)0);