From be41769a9447ff5435dedb29d273cb097f148b0b Mon Sep 17 00:00:00 2001 From: "gerv%gerv.net" Date: Tue, 28 Jan 2003 22:32:53 +0000 Subject: [PATCH] Fix "variable declaration masks earler declaration" warning. No bug number. git-svn-id: svn://10.0.0.236/trunk@137044 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/webtools/bugzilla/t/007util.t | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mozilla/webtools/bugzilla/t/007util.t b/mozilla/webtools/bugzilla/t/007util.t index 92fe563e89f..b1592548016 100644 --- a/mozilla/webtools/bugzilla/t/007util.t +++ b/mozilla/webtools/bugzilla/t/007util.t @@ -60,7 +60,7 @@ is(lsearch(\@list,'<"\\%'),3,'lsearch 2'); is(lsearch(\@list,'kiwi'),-1,'lsearch 3 (missing item)'); #max() and min(): -my @list = (7,27,636,2); +@list = (7,27,636,2); is(max(@list),636,'max()'); is(min(@list),2,'min()');