From cabe27ab37759394d913ee0d7521139c38c6db5e Mon Sep 17 00:00:00 2001 From: jacob berkman Date: Thu, 25 Jan 2001 17:40:43 +0000 Subject: add a \n to the usage message 2001-01-25 jacob berkman * root-manager/root-manager.c (main): add a \n to the usage message * root-manager/root-manager-wrap.c: change some g_print's to fprintf to stderr --- root-manager/root-manager.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'root-manager/root-manager.c') 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); } -- cgit v1.2.1