From f60ddf9bf737e015f7da866ca7f46006b4ce9700 Mon Sep 17 00:00:00 2001 From: Andreas Schwab Date: Tue, 16 Jun 2009 20:34:55 -0700 Subject: Don't treat bug reporting message as a format string. --- sysdeps/unix/sysv/linux/lddlibc4.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sysdeps/unix') diff --git a/sysdeps/unix/sysv/linux/lddlibc4.c b/sysdeps/unix/sysv/linux/lddlibc4.c index 694d1291cd..6d57190508 100644 --- a/sysdeps/unix/sysv/linux/lddlibc4.c +++ b/sysdeps/unix/sysv/linux/lddlibc4.c @@ -59,8 +59,8 @@ main (int argc, char *argv[]) if (strcmp (argv[1], "--help") == 0) { printf (gettext ("Usage: lddlibc4 FILE\n\n")); - printf (gettext ("For bug reporting instructions, please see:\n\ -.\n")); + fputs (gettext ("For bug reporting instructions, please see:\n\ +.\n"), stdout); return 0; } else if (strcmp (argv[1], "--version") == 0) -- cgit v1.2.1