diff options
Diffstat (limited to 'selftest/selftest.pl')
-rwxr-xr-x | selftest/selftest.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/selftest/selftest.pl b/selftest/selftest.pl index ffb61495a9e..c6eadd74dd9 100755 --- a/selftest/selftest.pl +++ b/selftest/selftest.pl @@ -886,7 +886,7 @@ $envvarstr if ($? == -1) { die("Unable to run $cmd: $!"); } elsif ($? & 127) { - die(snprintf("%s died with signal %d, %s coredump\n", $cmd, ($? & 127), ($? & 128) ? 'with' : 'without')); + die(sprintf("%s died with signal %d, %s coredump\n", $cmd, ($? & 127), ($? & 128) ? 'with' : 'without')); } my $exitcode = $? >> 8; |