Skip to content

Commit fa96210

Browse files
author
MacroFake
committed
fuzz: refactor: Replace NullUniValue with UniValue{}
This is needed for the scripted-diff to compile in the next commit
1 parent 5057adf commit fa96210

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: src/test/fuzz/parse_univalue.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ FUZZ_TARGET_INIT(parse_univalue, initialize_parse_univalue)
2626
return ParseNonRFCJSONValue(random_string);
2727
} catch (const std::runtime_error&) {
2828
valid = false;
29-
return NullUniValue;
29+
return UniValue{};
3030
}
3131
}();
3232
if (!valid) {

0 commit comments

Comments
 (0)