summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Friesel <derf@finalrewind.org>2011-03-04 15:22:04 +0100
committerDaniel Friesel <derf@finalrewind.org>2011-03-04 15:22:04 +0100
commitfb4c9ae14b7229e11c8afc478565de4beed89efe (patch)
tree659f2e6a59e900bd74656c11e3410d58106fe883
parent039319dd0774ba97e0051338518919682926905b (diff)
hashl: Set autoflush on correct filehandle (stderr)
-rwxr-xr-xbin/hashl2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/hashl b/bin/hashl
index 099cf5d..f92efc9 100755
--- a/bin/hashl
+++ b/bin/hashl
@@ -31,7 +31,7 @@ my $VERSION = '0.1';
my $db;
-STDOUT->autoflush(1);
+STDERR->autoflush(1);
GetOptions(
'd|database=s' => \$db_file,