Kaydet (Commit) 7c2c4895 authored tarafından Fridrich Štrba's avatar Fridrich Štrba

mingw64: NULL used in arithmetic

Change-Id: I87bf28e1d6db2afe5ffa095cbf9181602ec9fc3f
üst b1a82bd2
......@@ -90,7 +90,7 @@ BOOL registerWindowClass( HINSTANCE _hAppInstance )
wcx.lpszClassName = L"ODBCConfigMainClass"; // name of window class
wcx.hIconSm = NULL; // small class icon
return ( NULL != RegisterClassEx( &wcx ) );
return ( !!RegisterClassEx( &wcx ) );
}
/// initializes the application instances
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment