diff options
Diffstat (limited to 'lib/showcright.c')
-rw-r--r-- | lib/showcright.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/showcright.c b/lib/showcright.c index 8849c752e..3f130c68e 100644 --- a/lib/showcright.c +++ b/lib/showcright.c @@ -30,7 +30,8 @@ void showcopyright(const struct cmdinfo *c, const char *v) NONRETURNING; void showcopyright(const struct cmdinfo *c, const char *v) { int fd; fd= open(COPYINGFILE,O_RDONLY); - if (fd < 0) ohshite(_("cannot open GPL file ")); + if (fd < 0) + ohshite(_("cannot open GPL file")); fd_fd_copy(fd, 1, -1, "showcopyright"); exit(0); } |