summaryrefslogtreecommitdiffstats
path: root/Settings.c
diff options
context:
space:
mode:
Diffstat (limited to 'Settings.c')
-rw-r--r--Settings.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Settings.c b/Settings.c
index ce10d996..a2ae4e91 100644
--- a/Settings.c
+++ b/Settings.c
@@ -358,9 +358,9 @@ int Settings_write(const Settings* this, bool onCrash) {
}
#define printSettingInteger(setting_, value_) \
- fprintf(fd, setting_ "=%d%c", (int) (value_), separator);
+ fprintf(fd, setting_ "=%d%c", (int) (value_), separator)
#define printSettingString(setting_, value_) \
- fprintf(fd, setting_ "=%s%c", value_, separator);
+ fprintf(fd, setting_ "=%s%c", value_, separator)
if (!onCrash) {
fprintf(fd, "# Beware! This file is rewritten by htop when settings are changed in the interface.\n");