mirror of https://github.com/xzeldon/htop.git
Drop redundant semicolons
This commit is contained in:
parent
d0f5b61aa5
commit
0925c54caa
|
@ -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");
|
||||
|
|
Loading…
Reference in New Issue