From e0b633558d28afb43bed665963d2941dde4a0f26 Mon Sep 17 00:00:00 2001 From: Theodore Ts'o Date: Wed, 8 Feb 2017 22:36:25 -0500 Subject: quota-tools: add missing newline to die() messages Signed-off-by: Theodore Ts'o Signed-off-by: Jan Kara --- edquota.c | 4 ++-- quota.c | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/edquota.c b/edquota.c index 71b28b6..cc6c4e2 100644 --- a/edquota.c +++ b/edquota.c @@ -309,7 +309,7 @@ int main(int argc, char **argv) * reuse the file for editting the next user as well. */ if ((tmpfd = open(tmpfil, O_RDWR)) < 0) - die(1, _("Cannot reopen!")); + die(1, _("Cannot reopen!\n")); if (stat(tmpfil, &st) < 0) { errstr(_("Cannot stat file with times.\n")); ret = -1; @@ -361,7 +361,7 @@ int main(int argc, char **argv) * reuse the file for editting the next user as well. */ if ((tmpfd = open(tmpfil, O_RDWR)) < 0) - die(1, _("Cannot reopen!")); + die(1, _("Cannot reopen!\n")); if (stat(tmpfil, &st) < 0) { errstr(_("Cannot stat file with times.\n")); ret = -1; diff --git a/quota.c b/quota.c index c55e142..c8cc9b5 100644 --- a/quota.c +++ b/quota.c @@ -426,7 +426,7 @@ int main(int argc, char **argv) ret |= showquotas(GRPQUOTA, gidsetp[i], argc, argv); } if (flags & FL_PROJECT) - die(1, _("Project reports not supported without project name")); + die(1, _("Project reports not supported without project name\n")); exit(ret); } -- cgit v1.2.3