summaryrefslogtreecommitdiffstats
path: root/player/client.c
diff options
context:
space:
mode:
Diffstat (limited to 'player/client.c')
-rw-r--r--player/client.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/player/client.c b/player/client.c
index a8b90082cc..21c6807ad3 100644
--- a/player/client.c
+++ b/player/client.c
@@ -543,7 +543,7 @@ int mpv_initialize(mpv_handle *ctx)
int res = 0;
void *args[2] = {ctx->mpctx, &res};
mp_dispatch_run(ctx->mpctx->dispatch, doinit, args);
- return res < 0 ? MPV_ERROR_INVALID_PARAMETER : 0;
+ return res == 0 ? 0 : MPV_ERROR_INVALID_PARAMETER;
}
// set ev->data to a new copy of the original data