Skip to content

Commit 8e03088

Browse files
committed
regen/embed.pl: Rm double negative in conditional
As suggested by Bram, this was hard to understand
1 parent 801f8b8 commit 8e03088

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

regen/embed.pl

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,11 @@ sub generate_proto_h {
277277
if (!$nocheck and defined $argtype and exists $type_asserts{$argtype}) {
278278
push @typed_args, [ $argtype, $argname ];
279279
}
280-
if (defined $argname && ($nn||$nz) && !($has_mflag && !$binarycompat)) {
280+
281+
if ( defined $argname
282+
&& ($nn||$nz)
283+
&& (! $has_mflag || $binarycompat))
284+
{
281285
push @names_of_nn, $argname;
282286
}
283287
}

0 commit comments

Comments
 (0)