mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-11 20:16:02 +00:00
Style: Remove uses of NULL, substituting nullptr
This commit is contained in:
parent
93f4388e45
commit
5d5c32cec1
Notes:
sideshowbarker
2024-07-19 01:55:01 +09:00
Author: https://github.com/mlcurry 🔰
Commit: 5d5c32cec1
Pull-request: https://github.com/SerenityOS/serenity/pull/3756
7 changed files with 8 additions and 8 deletions
|
@ -132,7 +132,7 @@ CODE prioritynames[] = {
|
|||
{ "none", INTERNAL_NOPRI },
|
||||
{ "notice", LOG_NOTICE },
|
||||
{ "warning", LOG_WARNING },
|
||||
{ NULL, -1 },
|
||||
{ nullptr, -1 },
|
||||
};
|
||||
|
||||
CODE facilitynames[] = {
|
||||
|
@ -158,7 +158,7 @@ CODE facilitynames[] = {
|
|||
{ "syslog", LOG_SYSLOG },
|
||||
{ "user", LOG_USER },
|
||||
{ "uucp", LOG_UUCP },
|
||||
{ NULL, -1 },
|
||||
{ nullptr, -1 },
|
||||
};
|
||||
#endif
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue