fix: forgot newlime innlog message

This commit is contained in:
Quinn
2025-04-06 17:34:01 +02:00
parent 4607afed9a
commit 28e8aeb707

View File

@@ -40,7 +40,7 @@ int main(int argc, char** argv) {
errno = 0;
long const c = strtol(argv[i], NULL, 10);
if (errno == EINVAL) error("syntax error for string: %s\n", argv[i]);
if (c < 1 || c > (LONG_MAX - 1)) error("count may only be in between 1 and %l. Received %l", LONG_MAX, c);
if (c < 1 || c > (LONG_MAX - 1)) error("count may only be in between 1 and %l. Received %l\n", LONG_MAX, c);
// perform for the input count
for (long j = 0; j < c; ++j) {