diff options
-rw-r--r-- | rot.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -49,7 +49,7 @@ static int getrot(const char *str) errno = 0; val = strtol(str, &endptr, 10); if (errno) - die("Invalid argument '%s': %s", str, strerror(errno)); + die("Invalid argument '%s': %s\n", str, strerror(errno)); if (*endptr) die("Invalid argument '%s'\n", str); |