From 455214acef7d4601dec5ca097f3c644313401d68 Mon Sep 17 00:00:00 2001 From: wm4 Date: Sat, 21 Dec 2013 20:46:20 +0100 Subject: macosx_application: replace mp_msg with stderr for semi-fatal error Apparently this should never be run anyway. --- osdep/macosx_application.m | 7 ++++--- 1 file 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 #include #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; } -- cgit v1.2.3