1
1
mirror of http://git.sesse.net/plocate synced 2025-10-05 23:42:49 +02:00

Fix missing newline in error message.

This commit is contained in:
Steinar H. Gunderson
2023-01-28 22:06:40 +01:00
parent bb7206e3ba
commit 72a0c25dc9

View File

@@ -249,7 +249,7 @@ int main(int argc, char **argv)
break;
case 'l':
if (!parse_bool(optarg, &check_visibility) != 0) {
fprintf(stderr, "plocate-build: invalid value `%s' for --%s",
fprintf(stderr, "plocate-build: invalid value `%s' for --%s\n",
optarg, "require-visibility");
exit(EXIT_FAILURE);
}