1
0
mirror of https://github.com/MariaDB/server.git synced 2026-01-06 05:22:24 +03:00

Print args in case requirement fails

This commit is contained in:
msvensson@pilot.mysql.com
2008-03-10 14:09:59 +01:00
parent 115cb41beb
commit afefb65cea

View File

@@ -124,8 +124,8 @@ sub new {
@_
);
my $path = delete($opts{'path'}) or die "path required";
my $args = delete($opts{'args'}) or die "args required";
my $path = delete($opts{'path'}) or die "path required @_";
my $args = delete($opts{'args'}) or die "args required @_";
my $input = delete($opts{'input'});
my $output = delete($opts{'output'});
my $error = delete($opts{'error'});