summaryrefslogtreecommitdiffstats
path: root/Settings.c
diff options
context:
space:
mode:
authorNathan Scott <nathans@redhat.com>2021-09-08 12:13:49 +1000
committerNathan Scott <nathans@redhat.com>2021-09-08 12:13:56 +1000
commitc9b58c7fbe589d3976aee6e18eab7ae903aa253b (patch)
tree48e61990d93762a5a6419de8542500d33c630d6d /Settings.c
parentca06e68037d5b9859b861f3a1819ae0c47234ec5 (diff)
Add missing end-of-line to htoprc file version mismatch warning
Diffstat (limited to 'Settings.c')
-rw-r--r--Settings.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Settings.c b/Settings.c
index a2ae4e91..198f1f54 100644
--- a/Settings.c
+++ b/Settings.c
@@ -181,7 +181,7 @@ static bool Settings_read(Settings* this, const char* fileName, unsigned int ini
this->config_version = atoi(option[1]);
if (this->config_version > CONFIG_READER_MIN_VERSION) {
// the version of the config file on disk is newer than what we can read
- fprintf(stderr, "WARNING: %s specifies configuration format version v%d, but this %s binary supports up to v%d.", fileName, this->config_version, PACKAGE, CONFIG_READER_MIN_VERSION);
+ fprintf(stderr, "WARNING: %s specifies configuration format version v%d, but this %s binary supports up to v%d\n.", fileName, this->config_version, PACKAGE, CONFIG_READER_MIN_VERSION);
fprintf(stderr, " The configuration version will be downgraded to v%d when %s exits.\n", CONFIG_READER_MIN_VERSION, PACKAGE);
String_freeArray(option);
fclose(fd);

© 2014-2024 Faster IT GmbH | imprint | privacy policy