From: Matt Caswell Date: Tue, 6 Jan 2015 15:32:01 +0000 (+0000) Subject: Remove blank line from start of cflags character array in buildinf.h X-Git-Tag: OpenSSL_1_0_0p~11 X-Git-Url: https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff_plain;h=64eec8f898f014d796f5f5ebed4db8a5a38cad52 Remove blank line from start of cflags character array in buildinf.h Reviewed-by: Richard Levitte (cherry picked from commit b691154e18c0367643696db3cf73debe9ddfa9ae) --- diff --git a/util/mkbuildinf.pl b/util/mkbuildinf.pl index ca02d7b0b2..9d7b81c76e 100755 --- a/util/mkbuildinf.pl +++ b/util/mkbuildinf.pl @@ -19,7 +19,7 @@ my $ctr = 0; foreach my $c (split //, $cflags) { # Max 18 characters per line if (($ctr++ % 18) == 0) { - if ($ctr != 0) { + if ($ctr != 1) { print "\n"; } print " ";