From: Vadim Zeitlin Date: Mon, 24 Jun 2002 15:15:00 +0000 (+0000) Subject: wxMotif compilation warning fix X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/ec6aa8ecd517a14139091c436d7e103b53ba959a wxMotif compilation warning fix git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15937 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/motif/bitmap.cpp b/src/motif/bitmap.cpp index 4747f9ab1d..e5b3c2c308 100644 --- a/src/motif/bitmap.cpp +++ b/src/motif/bitmap.cpp @@ -229,7 +229,7 @@ bool wxBitmap::Create(void *data, long type, int width, int height, int depth) wxBitmapHandler *handler = FindHandler(type); if ( handler == NULL ) { - wxLogWarning("no data bitmap handler for type %d defined.", type); + wxLogWarning("no data bitmap handler for type %ld defined.", type); return FALSE; }