From: Richard Levitte Date: Fri, 19 May 2000 13:36:29 +0000 (+0000) Subject: Remove extra comma (creates a unnessecary null element, right?). X-Git-Tag: OpenSSL_0_9_5~14 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=145d39fbe50d746601a5745959a4431a99d719d2;p=oweals%2Fopenssl.git Remove extra comma (creates a unnessecary null element, right?). --- diff --git a/util/mkerr.pl b/util/mkerr.pl index 8e18f3c2df..5f094a5082 100644 --- a/util/mkerr.pl +++ b/util/mkerr.pl @@ -38,7 +38,7 @@ while (@ARGV) { } if($recurse) { - @source = (, , ,, ); + @source = (, , , ); } else { @source = @ARGV; }