Replace remaining NULL occurrence with NULLPTR
All checks were successful
Builds / ExectOS (amd64, debug) (push) Successful in 30s
Builds / ExectOS (amd64, release) (push) Successful in 28s
Builds / ExectOS (i686, debug) (push) Successful in 29s
Builds / ExectOS (i686, release) (push) Successful in 28s

This commit is contained in:
2025-09-16 16:04:37 +02:00
parent fabf3a3a5e
commit 98ad2087de

View File

@@ -17,7 +17,7 @@
#ifdef DBG
#define DebugPrint(Format, ...) if(KD::DebugIo::KdPrint) KD::DebugIo::KdPrint(Format, __VA_ARGS__);
#else
#define DebugPrint(Format, ...) ((VOID)NULL)
#define DebugPrint(Format, ...) ((VOID)NULLPTR)
#endif
#endif /* __XTOSKRNL_KD_DBG_HH */