Remove blank line from start of cflags character array in buildinf.h
authorMatt Caswell <matt@openssl.org>
Tue, 6 Jan 2015 15:32:01 +0000 (15:32 +0000)
committerMatt Caswell <matt@openssl.org>
Tue, 6 Jan 2015 15:35:15 +0000 (15:35 +0000)
Reviewed-by: Richard Levitte <levitte@openssl.org>
(cherry picked from commit b691154e18c0367643696db3cf73debe9ddfa9ae)

util/mkbuildinf.pl

index ca02d7b0b213485c92df5e7dc3c0fa7f29e1dde4..9d7b81c76e417cccc29365654e3b0b0a8cd964b1 100755 (executable)
@@ -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 "        ";