Skip to content

Commit 28a3ba1

Browse files
author
Sriya Pratipati
committed
fixed formatting
1 parent f69d8ab commit 28a3ba1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libc/fuzzing/math/exp_fuzz.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
2727

2828
// remove NaN and inf
2929
if (isnan(x) || isinf(x))
30-
continue;
30+
continue;
3131
// signed zeros already tested in unit tests
3232
if (signbit(x) && x == 0.0)
3333
continue;

0 commit comments

Comments
 (0)