From 98ad2087ded0759386add4ce1bd9dbb68cf57449 Mon Sep 17 00:00:00 2001 From: Aiken Harris Date: Tue, 16 Sep 2025 16:04:37 +0200 Subject: [PATCH] Replace remaining NULL occurrence with NULLPTR --- xtoskrnl/includes/kd/dbg.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xtoskrnl/includes/kd/dbg.hh b/xtoskrnl/includes/kd/dbg.hh index cbe5500..3fae6c8 100644 --- a/xtoskrnl/includes/kd/dbg.hh +++ b/xtoskrnl/includes/kd/dbg.hh @@ -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 */