mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-23 09:51:57 -05:00
Kernel: Use StringView literals instead of empty Strings in ProcFS
This commit is contained in:
parent
0fc25273e4
commit
119f900451
1 changed files with 2 additions and 2 deletions
|
@ -480,8 +480,8 @@ private:
|
|||
break;
|
||||
}
|
||||
} else {
|
||||
process_object.add("pledge", String());
|
||||
process_object.add("veil", String());
|
||||
process_object.add("pledge", ""sv);
|
||||
process_object.add("veil", ""sv);
|
||||
}
|
||||
|
||||
process_object.add("pid", process.pid().value());
|
||||
|
|
Loading…
Add table
Reference in a new issue