diff options
author | Tomasz Kramkowski <tk@the-tk.com> | 2016-04-01 20:52:50 +0200 |
---|---|---|
committer | Tomasz Kramkowski <tk@the-tk.com> | 2016-04-01 20:52:50 +0200 |
commit | db878a276e60be265b18544a38886724464e6a63 (patch) | |
tree | aca16ce31e6fa400a58f2cc30d7790585366ded0 | |
parent | 2f72cbdc850d7c2a3b7c33c2e229864c6fd7c315 (diff) | |
download | c-stuff-db878a276e60be265b18544a38886724464e6a63.tar.gz c-stuff-db878a276e60be265b18544a38886724464e6a63.tar.xz c-stuff-db878a276e60be265b18544a38886724464e6a63.zip |
-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); |