diff --git a/AK/Userspace.h b/AK/Userspace.h index d499363de6..c1659821b1 100644 --- a/AK/Userspace.h +++ b/AK/Userspace.h @@ -42,7 +42,7 @@ public: operator bool() const { return m_ptr; } operator FlatPtr() const { return (FlatPtr)m_ptr; } -#if defined(KERNEL) +#ifdef KERNEL Userspace(FlatPtr ptr) : m_ptr(ptr) { @@ -60,7 +60,7 @@ public: #endif private: -#if defined(KERNEL) +#ifdef KERNEL FlatPtr m_ptr { 0 }; #else T m_ptr { nullptr };