summaryrefslogtreecommitdiffstats
path: root/mplayer.c
diff options
context:
space:
mode:
authorUoti Urpala <uau@glyph.nonexistent.invalid>2010-03-09 23:18:19 +0200
committerUoti Urpala <uau@glyph.nonexistent.invalid>2010-03-09 23:18:19 +0200
commitc31aa7b9536db6db0523c93fbcd701665ca5ac58 (patch)
tree67e024d3bcfaeb39a22f18a4ee76ce37a0a5a23c /mplayer.c
parentad43180c1617d24bf53f07b952b28f381ea8c758 (diff)
parent8a67379319806dedf421f5bf217091084baab573 (diff)
downloadmpv-c31aa7b9536db6db0523c93fbcd701665ca5ac58.tar.bz2
mpv-c31aa7b9536db6db0523c93fbcd701665ca5ac58.tar.xz
Merge svn change r30560
Diffstat (limited to 'mplayer.c')
-rw-r--r--mplayer.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/mplayer.c b/mplayer.c
index 9eff2c16d7..e158011bab 100644
--- a/mplayer.c
+++ b/mplayer.c
@@ -726,7 +726,7 @@ void uninit_player(struct MPContext *mpctx, unsigned int mask){
current_module=NULL;
}
-void exit_player_with_rc(struct MPContext *mpctx, exit_reason_t how, int rc)
+void exit_player_with_rc(struct MPContext *mpctx, enum exit_reason how, int rc)
{
if (mpctx->user_muted && !mpctx->edl_muted) mixer_mute(&mpctx->mixer);
uninit_player(mpctx, INITIALIZED_ALL);
@@ -798,7 +798,7 @@ void exit_player_with_rc(struct MPContext *mpctx, exit_reason_t how, int rc)
exit(rc);
}
-static void exit_player(struct MPContext *mpctx, exit_reason_t how)
+static void exit_player(struct MPContext *mpctx, enum exit_reason how)
{
exit_player_with_rc(mpctx, how, 1);
}