From c8505d3a36497714a1255492262ef3729273137c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?agentzh=20=28=E7=AB=A0=E4=BA=A6=E6=98=A5=29?= Date: Wed, 9 Mar 2011 20:49:47 +0800 Subject: [PATCH] fixed a small warning of uninitialized values. --- util/configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util/configure b/util/configure index 80724de..c4e0044 100755 --- a/util/configure +++ b/util/configure @@ -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"; } }