Everywhere: Use default StringView constructor over nullptr

While null StringViews are just as bad, these prevent the removal of
StringView(char const*) as that constructor accepts a nullptr.

No functional changes.
This commit is contained in:
sin-ack 2022-07-11 20:18:40 +00:00 committed by Andreas Kling
parent c8585b77d2
commit fbc771efe9
Notes: sideshowbarker 2024-07-17 09:26:55 +09:00
16 changed files with 31 additions and 31 deletions

View file

@ -15,7 +15,7 @@ ErrorOr<FlatPtr> Process::sys$perf_event(int type, FlatPtr arg1, FlatPtr arg2)
auto* events_buffer = current_perf_events_buffer();
if (!events_buffer)
return 0;
TRY(events_buffer->append(type, arg1, arg2, nullptr));
TRY(events_buffer->append(type, arg1, arg2, {}));
return 0;
}