From c83ec08ad3e72c6363aa0cbed38d8913c845490f Mon Sep 17 00:00:00 2001 From: NicJA Date: Thu, 21 Apr 2016 00:53:48 +0000 Subject: [PATCH] don't use NULL git-svn-id: https://svn.aros.org/svn/aros/trunk/contrib@52682 fb15a70f-31f2-0310-bbcc-cdcc74a49acc --- FryingPan/FP/GUI-MUI/MUIContents.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FryingPan/FP/GUI-MUI/MUIContents.cpp b/FryingPan/FP/GUI-MUI/MUIContents.cpp index 2bcb785b9..95e434c61 100644 --- a/FryingPan/FP/GUI-MUI/MUIContents.cpp +++ b/FryingPan/FP/GUI-MUI/MUIContents.cpp @@ -137,7 +137,7 @@ DbgHandler *MUIContents::getDebug() IPTR MUIContents::getObject() { _dx(Lvl_Info, "Retrieving page content (%lx)", (IPTR)all); - if (NULL != all) + if (0 != all) return all; _dx(Lvl_Info, "Page not created yet - building"); -- 2.11.4.GIT