Remove blank line from start of cflags character array in buildinf.h
Reviewed-by: Richard Levitte <levitte@openssl.org>
This commit is contained in:
parent
0548505f4c
commit
b691154e18
1 changed files with 1 additions and 1 deletions
|
@ -19,7 +19,7 @@ my $ctr = 0;
|
||||||
foreach my $c (split //, $cflags) {
|
foreach my $c (split //, $cflags) {
|
||||||
# Max 18 characters per line
|
# Max 18 characters per line
|
||||||
if (($ctr++ % 18) == 0) {
|
if (($ctr++ % 18) == 0) {
|
||||||
if ($ctr != 0) {
|
if ($ctr != 1) {
|
||||||
print "\n";
|
print "\n";
|
||||||
}
|
}
|
||||||
print " ";
|
print " ";
|
||||||
|
|
Loading…
Reference in a new issue