File tree Expand file tree Collapse file tree 2 files changed +13
-1
lines changed
Expand file tree Collapse file tree 2 files changed +13
-1
lines changed Original file line number Diff line number Diff line change 11project ( ' nip4' , ' c' ,
22 # ie. a major after nip2 8.9 for workspace save file versioning
3- version : ' 9.0.0-4 ' ,
3+ version : ' 9.0.0-5 ' ,
44 license : ' GPL' ,
55 meson_version : ' >=0.64' ,
66 default_options : [
Original file line number Diff line number Diff line change @@ -256,6 +256,18 @@ main_load_wsg(const char *filename)
256256 return NULL ;
257257}
258258
259+ /* NULL log handler. Used to suppress output on win32 without DEBUG_FATAL.
260+ */
261+ #ifndef DEBUG_FATAL
262+ #ifdef OS_WIN32
263+ static void
264+ main_log_null (const char * log_domain , GLogLevelFlags log_level ,
265+ const char * message , void * user_data )
266+ {
267+ }
268+ #endif /*OS_WIN32*/
269+ #endif /*!DEBUG_FATAL*/
270+
259271int
260272main (int argc , char * * argv )
261273{
You can’t perform that action at this time.
0 commit comments