diff options
Diffstat (limited to 'root-manager/root-manager.c')
-rw-r--r-- | root-manager/root-manager.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/root-manager/root-manager.c b/root-manager/root-manager.c index 562910ea4..df6fc6177 100644 --- a/root-manager/root-manager.c +++ b/root-manager/root-manager.c @@ -442,13 +442,13 @@ int main(int argc, char *argv[]) } if (argc < 2) { - fprintf(stderr, _("Usage: root-helper fd")); + fprintf(stderr, _("Usage: root-helper fd\n")); exit(ERR_INVALID_CALL); } fd = atoi (argv[1]); if (fd <= STDERR_FILENO) { - fprintf (stderr, _("Usage: root-helper fd")); + fprintf (stderr, _("Usage: root-helper fd\n")); exit(ERR_INVALID_CALL); } |