On Mar 5, 2013, at 6:32 PM, Josh DuBois wrote:
diff --git a/dlls/winemac.drv/macdrv_main.c b/dlls/winemac.drv/macdrv_main.c index cd1cc0c..1f16694 100644 --- a/dlls/winemac.drv/macdrv_main.c +++ b/dlls/winemac.drv/macdrv_main.c @@ -85,7 +85,7 @@ static BOOL process_attach(void) macdrv_err_on = ERR_ON(macdrv); if (macdrv_start_cocoa_app(GetTickCount64())) {
ERR("Failed to start Cocoa app main loop\n");
}TRACE("Failed to start Cocoa app main loop\n"); return FALSE;
I would think that this should still be at least a WARN, although I'm not sure why it's being demoted from ERR in the first place. (In fact, I should probably have added a WARN in my patch for refusing to run in non-GUI sessions.)
-Ken