aboutsummaryrefslogtreecommitdiffstats
path: root/cfg.c
diff options
context:
space:
mode:
authormichael <michael@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>2009-01-18 07:21:13 +0000
committermichael <michael@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>2009-01-18 07:21:13 +0000
commit5b875cd6b8339c8a9c459d9bca1f709226b5e07a (patch)
treefe1b15d4cb13071fa6e906a2fcb3990b4d61b0ed /cfg.c
parentdf239a43548d4889cd17a8bbaeee79d6fe2a37e8 (diff)
downloadlcd4linux-5b875cd6b8339c8a9c459d9bca1f709226b5e07a.tar.gz
'emty format string' compiler warning solved
git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@974 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
Diffstat (limited to 'cfg.c')
-rw-r--r--cfg.c2
1 files changed, 1 insertions, 1 deletions
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(" ");
}