Skip to content

Commit c3eb081

Browse files
committed
rtlib: array_redim.c add parens
1 parent 54712a4 commit c3eb081

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/rtlib/array_redim.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ int fb_hArrayAlloc
7575
/* Allocte new buffer */
7676
/* Clearing is not needed if not requested, or if ctors will be called
7777
(ctors take care of clearing themselves) */
78-
if( doclear == 32 && (ctor == NULL) )
78+
if( (doclear == 32) && (ctor == NULL) )
7979
{
8080
array->ptr = malloc( size );
8181
memset( array->ptr, 32, size );

0 commit comments

Comments
 (0)