From 2c7c3a91e93552a7327d396278a125d69f95e2af Mon Sep 17 00:00:00 2001 From: Peter Wemm Date: Wed, 14 Jun 2000 02:45:11 +0000 Subject: [PATCH] Print error messages to stderr, not stdout. --- sys/alpha/conf/gethints.pl | 2 +- sys/i386/conf/gethints.pl | 2 +- sys/pc98/conf/gethints.pl | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/sys/alpha/conf/gethints.pl b/sys/alpha/conf/gethints.pl index e29adb113266..d00582c83b6e 100644 --- a/sys/alpha/conf/gethints.pl +++ b/sys/alpha/conf/gethints.pl @@ -89,6 +89,6 @@ while () { } next; } - print "unrecognized config token $key\n"; + print STDERR "unrecognized config token $key\n"; } } diff --git a/sys/i386/conf/gethints.pl b/sys/i386/conf/gethints.pl index e29adb113266..d00582c83b6e 100644 --- a/sys/i386/conf/gethints.pl +++ b/sys/i386/conf/gethints.pl @@ -89,6 +89,6 @@ while () { } next; } - print "unrecognized config token $key\n"; + print STDERR "unrecognized config token $key\n"; } } diff --git a/sys/pc98/conf/gethints.pl b/sys/pc98/conf/gethints.pl index d5990d0c90e2..51ac8a98fc22 100644 --- a/sys/pc98/conf/gethints.pl +++ b/sys/pc98/conf/gethints.pl @@ -82,6 +82,6 @@ while () { } next; } - print "unrecognized config token $key\n"; + print STDERR "unrecognized config token $key\n"; } }