From 5ff8c449e2fa8105a4300c5a3ff730fe34ecb338 Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Fri, 30 May 2014 08:53:55 -0600 Subject: [PATCH] snprintf(): If size is zero, then snprintf() should return the size of the required buffer without writing anyting. From Sami Pelkonen --- examples/hello/hello_main.c | 1 - 1 file changed, 1 deletion(-) diff --git a/examples/hello/hello_main.c b/examples/hello/hello_main.c index 229027c36..95961545c 100644 --- a/examples/hello/hello_main.c +++ b/examples/hello/hello_main.c @@ -61,4 +61,3 @@ int hello_main(int argc, char *argv[]) printf("Hello, World!!\n"); return 0; } -