mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 17:37:37 +00:00
LibC: We still need to use NULL (not nullptr) in C headers
Thanks to @alimpfard for noticing this.
This commit is contained in:
parent
c1823d8a34
commit
1208f3fd75
2 changed files with 3 additions and 3 deletions
|
@ -132,7 +132,7 @@ CODE prioritynames[] = {
|
|||
{ "none", INTERNAL_NOPRI },
|
||||
{ "notice", LOG_NOTICE },
|
||||
{ "warning", LOG_WARNING },
|
||||
{ nullptr, -1 },
|
||||
{ NULL, -1 },
|
||||
};
|
||||
|
||||
CODE facilitynames[] = {
|
||||
|
@ -158,7 +158,7 @@ CODE facilitynames[] = {
|
|||
{ "syslog", LOG_SYSLOG },
|
||||
{ "user", LOG_USER },
|
||||
{ "uucp", LOG_UUCP },
|
||||
{ nullptr, -1 },
|
||||
{ NULL, -1 },
|
||||
};
|
||||
#endif
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue