summaryrefslogtreecommitdiff
path: root/posix
diff options
context:
space:
mode:
authorAndreas Schwab <aschwab@redhat.com>2009-06-16 20:34:55 -0700
committerUlrich Drepper <drepper@redhat.com>2009-06-16 20:34:55 -0700
commitf60ddf9bf737e015f7da866ca7f46006b4ce9700 (patch)
tree8b2e94779e55e947e1de64d17f64b108d78eb7c3 /posix
parent8a909c6430e8b6ad76304f749d36fdd6e40e8046 (diff)
Don't treat bug reporting message as a format string.
Diffstat (limited to 'posix')
-rw-r--r--posix/getconf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/posix/getconf.c b/posix/getconf.c
index 59ccab606c..c9e1300e49 100644
--- a/posix/getconf.c
+++ b/posix/getconf.c
@@ -1118,8 +1118,8 @@ Usage: getconf [-v SPEC] VAR\n\
Get the configuration value for variable VAR, or for variable PATH_VAR\n\
for path PATH. If SPEC is given, give values for compilation\n\
environment SPEC.\n\n"));
- printf (gettext ("For bug reporting instructions, please see:\n\
-<http://www.gnu.org/software/libc/bugs.html>.\n"));
+ fputs (gettext ("For bug reporting instructions, please see:\n\
+<http://www.gnu.org/software/libc/bugs.html>.\n"), stdout);
return 0;
}