Skip to content

Commit 5687a0c

Browse files
Add parenthesis to be more explicit
1 parent 6bebfc2 commit 5687a0c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/fwrite.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -673,7 +673,7 @@ void fwriteMain(fwriteMainArgs args)
673673
}
674674
if (args.whichFun[j] == WF_Float64 && args.scipen > 0)
675675
// clamp width to IEEE754 max to avoid scipen=99999 allocating buffer larger than can ever be written
676-
width += args.scipen < 350 ? args.scipen : 350;
676+
width += (args.scipen < 350) ? args.scipen : 350;
677677
if (width < naLen)
678678
width = naLen;
679679
maxLineLen += width * 2; // *2 in case the longest string is all quotes and they all need to be escaped

0 commit comments

Comments
 (0)