From: yoe Date: Mon, 25 Aug 2008 11:58:01 +0000 (+0000) Subject: r342: Use right printf() format string X-Git-Url: http://git.alex.org.uk r342: Use right printf() format string --- diff --git a/nbd-server.c b/nbd-server.c index 614fda5..c930ff4 100644 --- a/nbd-server.c +++ b/nbd-server.c @@ -367,7 +367,7 @@ void dump_section(SERVER* serve, gchar* section_header) { printf("\tcopyonwrite = true\n"); } if(serve->expected_size) { - printf("\tfilesize = %Ld\n", (long long int)serve->expected_size); + printf("\tfilesize = %lld\n", (long long int)serve->expected_size); } if(serve->authname) { printf("\tauthfile = %s\n", serve->authname);