From 1a183bb1d370a7bbcf1e4d6ce028b5d79748480c Mon Sep 17 00:00:00 2001 From: Stefan Csomor Date: Sun, 6 Feb 2005 16:28:03 +0000 Subject: [PATCH] NULL warning fixes git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@31798 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/common/filename.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/filename.cpp b/src/common/filename.cpp index 50329cd23a..a288d75c78 100644 --- a/src/common/filename.cpp +++ b/src/common/filename.cpp @@ -1998,7 +1998,7 @@ public : MacDefaultExtensionRecord() { m_ext[0] = 0 ; - m_type = m_creator = NULL ; + m_type = m_creator = 0 ; } MacDefaultExtensionRecord( const MacDefaultExtensionRecord& from ) { -- 2.45.2