From 0925c54caadbdf55c34a06590c62dfa1cfa68a93 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20G=C3=B6ttsche?= Date: Sat, 4 Sep 2021 14:14:57 +0200 Subject: Drop redundant semicolons --- Settings.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Settings.c') 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"); -- cgit v1.2.3