summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2015-01-06 15:32:01 +0000
committerMatt Caswell <matt@openssl.org>2015-01-06 15:35:15 +0000
commit8dc461eccfec6d4d3b5e55d0cb9a7ce3e546d380 (patch)
tree3f974c5190f0a64b59ef85f0031f6b2d36a8a47a
parent4b4c1fcc88aec8c9e001b0a0077d3cd4de1ed0e6 (diff)
Remove blank line from start of cflags character array in buildinf.h
Reviewed-by: Richard Levitte <levitte@openssl.org> (cherry picked from commit b691154e18c0367643696db3cf73debe9ddfa9ae)
-rwxr-xr-xutil/mkbuildinf.pl2
1 files changed, 1 insertions, 1 deletions
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 " ";