aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--rot.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/rot.c b/rot.c
index ba72c3c..951ff3e 100644
--- a/rot.c
+++ b/rot.c
@@ -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);