aboutsummaryrefslogtreecommitdiff
path: root/config-file.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'config-file.cpp')
-rw-r--r--config-file.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/config-file.cpp b/config-file.cpp
index 3049dfb55c..c753f8dadd 100644
--- a/config-file.cpp
+++ b/config-file.cpp
@@ -33,7 +33,8 @@
static char *ltrim(char *t)
{
- for (; *t && (*t == ' '); t++);
+ for (; *t && (*t == ' '); t++)
+ ;
return t;
}