From a4243710b01eee8e20b2d66fd81f810b9307bed5 Mon Sep 17 00:00:00 2001 From: Eric Wong Date: Sun, 28 Feb 2016 04:27:10 +0000 Subject: spawnpp: fix error message for stderr redirect failing Oops :x --- lib/PublicInbox/SpawnPP.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/PublicInbox/SpawnPP.pm b/lib/PublicInbox/SpawnPP.pm index ae552dd8..1a402e42 100644 --- a/lib/PublicInbox/SpawnPP.pm +++ b/lib/PublicInbox/SpawnPP.pm @@ -17,7 +17,7 @@ sub public_inbox_fork_exec ($$$$$$) { dup2($out, 1) or die "dup2 failed for stdout: $!"; } if ($err != 2) { - dup2($err, 2) or die "dup2 failed for stderr$!"; + dup2($err, 2) or die "dup2 failed for stderr: $!"; } %ENV = (); foreach my $e (@$env) { -- cgit v1.2.3-24-ge0c7