From 64f45623282f7e7e155beefed50429230c87fb84 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sun, 7 Aug 2005 16:04:04 +0000 Subject: [PATCH] assign 0, not NULL, to an int git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@35141 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/mac/carbon/bitmap.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mac/carbon/bitmap.cpp b/src/mac/carbon/bitmap.cpp index bb3247be56..0359fd6090 100644 --- a/src/mac/carbon/bitmap.cpp +++ b/src/mac/carbon/bitmap.cpp @@ -146,7 +146,7 @@ void wxBitmapRefData::Init() m_pictHandle = NULL ; m_hBitmap = NULL ; m_hMaskBitmap = NULL; - m_maskBytesPerRow = NULL ; + m_maskBytesPerRow = 0 ; m_rawAccessCount = 0 ; m_hasAlpha = false; -- 2.45.2