Skip to content

Commit 283c703

Browse files
committed
libcupsfilters, implicitclass, parallel: Added missing newlines at error messages
1 parent 30e839b commit 283c703

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

backend/implicitclass.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -413,7 +413,7 @@ main(int argc, /* I - Number of command-line args */
413413
}
414414
} else if (argc != 1) {
415415
fprintf(stderr,
416-
"Usage: %s job-id user title copies options [file]",
416+
"Usage: %s job-id user title copies options [file]\n",
417417
argv[0]);
418418
return (CUPS_BACKEND_FAILED);
419419
}

backend/parallel.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ main(int argc, /* I - Number of command-line arguments (6 or 7) */
100100
}
101101
else if (argc < 6 || argc > 7)
102102
{
103-
fprintf(stderr, "Usage: %s job-id user title copies options [file]",
103+
fprintf(stderr, "Usage: %s job-id user title copies options [file]\n",
104104
argv[0]);
105105
return (CUPS_BACKEND_FAILED);
106106
}

cupsfilters/filter.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ filterCUPSWrapper(
132132

133133
if (argc < 6 || argc > 7)
134134
{
135-
fprintf(stderr, "Usage: %s job-id user title copies options [file]",
135+
fprintf(stderr, "Usage: %s job-id user title copies options [file]\n",
136136
argv[0]);
137137
return (1);
138138
}

0 commit comments

Comments
 (0)