summaryrefslogtreecommitdiffstats
path: root/audio/out/ao_wasapi_utils.c
diff options
context:
space:
mode:
authorKevin Mitchell <kevmitch@gmail.com>2016-02-26 10:44:55 -0800
committerKevin Mitchell <kevmitch@gmail.com>2016-02-26 15:43:51 -0800
commit534571f7940a7c7a125ef66fd2075be71a283058 (patch)
treec14e6543004b25dafe1bc72c09a9a333ffa3a052 /audio/out/ao_wasapi_utils.c
parentaf90616ebe973f3ed06cc1c502b23891e76e747a (diff)
downloadmpv-534571f7940a7c7a125ef66fd2075be71a283058.tar.bz2
mpv-534571f7940a7c7a125ef66fd2075be71a283058.tar.xz
ao_wasapi: use MP_FATAL for stuff that leads to init failure
Diffstat (limited to 'audio/out/ao_wasapi_utils.c')
-rw-r--r--audio/out/ao_wasapi_utils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/audio/out/ao_wasapi_utils.c b/audio/out/ao_wasapi_utils.c
index 76a50cdf24..8d0ea30bd7 100644
--- a/audio/out/ao_wasapi_utils.c
+++ b/audio/out/ao_wasapi_utils.c
@@ -978,7 +978,7 @@ retry: ;
MP_DBG(ao, "Init wasapi thread done\n");
return S_OK;
exit_label:
- MP_ERR(state, "Error setting up audio thread: %s\n", mp_HRESULT_to_str(hr));
+ MP_FATAL(state, "Error setting up audio thread: %s\n", mp_HRESULT_to_str(hr));
return hr;
}