wxMotif compilation warning fix

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15937 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 2002-06-24 15:15:00 +00:00
parent e28b0102bd
commit ec6aa8ecd5

View File

@ -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;
}