From: michael Date: Sun, 18 Jan 2009 07:21:13 +0000 (+0000) Subject: 'emty format string' compiler warning solved X-Git-Tag: svn1203~229 X-Git-Url: https://git.webhop.me/?a=commitdiff_plain;h=5b875cd6b8339c8a9c459d9bca1f709226b5e07a;p=lcd4linux.git 'emty format string' compiler warning solved git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@974 3ae390bd-cb1e-0410-b409-cd5a39f66f1f --- diff --git a/cfg.c b/cfg.c index 2ed3844..9bf3f57 100644 --- a/cfg.c +++ b/cfg.c @@ -689,7 +689,7 @@ static void cfg_dump(void) for (i = 0; i < nConfig; i++) { info(" %-*s %s", len, Config[i].key, Config[i].val); } - info(""); + info(" "); }