Indentation of string arguments

This commit is contained in:
Benny Baumann
2021-07-14 19:20:16 +02:00
committed by BenBE
parent 0d85af2872
commit 68edf92434
2 changed files with 22 additions and 22 deletions

View File

@ -114,8 +114,8 @@ static bool PCPDynamicMeter_validateMeterName(char* key, const char* path, unsig
*end = '\0';
} else {
fprintf(stderr,
"%s: no closing brace on meter name at %s line %u\n\"%s\"\n",
pmGetProgname(), path, line, key);
"%s: no closing brace on meter name at %s line %u\n\"%s\"\n",
pmGetProgname(), path, line, key);
return false;
}
@ -131,8 +131,8 @@ static bool PCPDynamicMeter_validateMeterName(char* key, const char* path, unsig
}
if (*p != '\0') { /* badness */
fprintf(stderr,
"%s: invalid meter name at %s line %u\n\"%s\"\n",
pmGetProgname(), path, line, key);
"%s: invalid meter name at %s line %u\n\"%s\"\n",
pmGetProgname(), path, line, key);
return false;
}
return true;