Commit 11530541 authored by Dag Erling Smørgrav's avatar Dag Erling Smørgrav

Use %zd for size_t.


git-svn-id: http://www.varnish-cache.org/svn/trunk/varnish-cache@2105 d4fa192b-c00b-0410-8231-f00ffab90ce4
parent cd8ae82b
......@@ -51,7 +51,7 @@ child_main(void)
setbuf(stderr, NULL);
printf("Child starts\n");
#define SZOF(foo) printf("sizeof(%s) = %d\n", #foo, sizeof(foo));
#define SZOF(foo) printf("sizeof(%s) = %zd\n", #foo, sizeof(foo));
SZOF(struct ws);
SZOF(struct http);
SZOF(struct http_conn);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment