aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTomasz Kramkowski <tk@the-tk.com>2016-04-01 20:52:50 +0200
committerTomasz Kramkowski <tk@the-tk.com>2016-04-01 20:52:50 +0200
commitdb878a276e60be265b18544a38886724464e6a63 (patch)
treeaca16ce31e6fa400a58f2cc30d7790585366ded0
parent2f72cbdc850d7c2a3b7c33c2e229864c6fd7c315 (diff)
downloadc-stuff-db878a276e60be265b18544a38886724464e6a63.tar.gz
c-stuff-db878a276e60be265b18544a38886724464e6a63.tar.xz
c-stuff-db878a276e60be265b18544a38886724464e6a63.zip
rot.c: Fix missing newline.HEADmaster
-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);