summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xsrc/ssic.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ssic.pl b/src/ssic.pl
index 2f3744e..ba8b184 100755
--- a/src/ssic.pl
+++ b/src/ssic.pl
@@ -105,14 +105,14 @@ sub warning
{
my ($fmt, @args) = @_;
- printf("ssic: Warning: " . $fmt, @args);
+ printf(STDERR "ssic: Warning: " . $fmt, @args);
}
sub error
{
my ($status, $fmt, @args) = @_;
- printf("ssic: Error: " . $fmt, @args);
+ printf(STDERR "ssic: Error: " . $fmt, @args);
exit($status);
}