fixed a small warning of uninitialized values.

This commit is contained in:
agentzh (章亦春) 2011-03-09 20:49:47 +08:00
parent dc2394d5ac
commit c8505d3a36
1 changed files with 1 additions and 1 deletions

2
util/configure vendored
View File

@ -206,7 +206,7 @@ sub shell ($@) {
unless ($dry_run) {
system($cmd) == 0 or
die "failed to run command @_\n";
die "failed to run command: $cmd\n";
}
}