From ec6aa8ecd517a14139091c436d7e103b53ba959a Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Mon, 24 Jun 2002 15:15:00 +0000 Subject: [PATCH] wxMotif compilation warning fix git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15937 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/motif/bitmap.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.50.0