summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--osdep/macosx_application.m7
1 files changed, 4 insertions, 3 deletions
diff --git a/osdep/macosx_application.m b/osdep/macosx_application.m
index ba801f412a..1ae1752bf1 100644
--- a/osdep/macosx_application.m
+++ b/osdep/macosx_application.m
@@ -16,6 +16,7 @@
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
+#include <stdio.h>
#include <pthread.h>
#include "talloc.h"
@@ -336,9 +337,9 @@ int cocoa_main(mpv_main_fn mpv_main, int argc, char *argv[])
// This should never be reached: cocoa_run_runloop blocks until the
// process is quit
- mp_msg(MSGT_CPLAYER, MSGL_ERR, "There was either a problem "
- "initializing Cocoa or the Runloop was stopped unexpectedly. "
- "Please report this issues to a developer.\n");
+ fprintf(stderr, "There was either a problem "
+ "initializing Cocoa or the Runloop was stopped unexpectedly. "
+ "Please report this issues to a developer.\n");
pthread_join(playback_thread_id, NULL);
return 1;
}