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:39:32 +0000
commit64eec8f898f014d796f5f5ebed4db8a5a38cad52 (patch)
tree208f17fa20fa936cd851f95af9aad98d02462d74
parent08a88774bd8463bedf7fe440a165d3d98b702361 (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 " ";