mirror of https://github.com/xzeldon/htop.git
Improve configuration file version diagnostic formatting slightly
This commit is contained in:
parent
c5e789db1b
commit
4c846921a6
|
@ -181,8 +181,9 @@ static bool Settings_read(Settings* this, const char* fileName, unsigned int ini
|
||||||
this->config_version = atoi(option[1]);
|
this->config_version = atoi(option[1]);
|
||||||
if (this->config_version > CONFIG_READER_MIN_VERSION) {
|
if (this->config_version > CONFIG_READER_MIN_VERSION) {
|
||||||
// the version of the config file on disk is newer than what we can read
|
// 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\n.", fileName, this->config_version, PACKAGE, CONFIG_READER_MIN_VERSION);
|
fprintf(stderr, "WARNING: %s specifies configuration format\n", fileName);
|
||||||
fprintf(stderr, " The configuration version will be downgraded to v%d when %s exits.\n", CONFIG_READER_MIN_VERSION, PACKAGE);
|
fprintf(stderr, " version v%d, but this %s binary only supports up to version v%d.\n", this->config_version, PACKAGE, CONFIG_READER_MIN_VERSION);
|
||||||
|
fprintf(stderr, " The configuration file will be downgraded to v%d when %s exits.\n", CONFIG_READER_MIN_VERSION, PACKAGE);
|
||||||
String_freeArray(option);
|
String_freeArray(option);
|
||||||
fclose(fd);
|
fclose(fd);
|
||||||
return false;
|
return false;
|
||||||
|
|
Loading…
Reference in New Issue