git-meld icon indicating copy to clipboard operation
git-meld copied to clipboard

Fix error message in safe_system()

Open MrCricket opened this issue 13 years ago • 1 comments

die ("system(" . @_ . ") failed!");

@_ is used in scalar context, only prints len of args

should be used in array context, ie

die "system(@_ ) failed!\n";

MrCricket avatar Oct 11 '12 23:10 MrCricket

+1

blueyed avatar Feb 21 '13 14:02 blueyed