diff options
author | Niklas Haas <git@nand.wakku.to> | 2016-06-07 13:39:43 +0200 |
---|---|---|
committer | wm4 <wm4@nowhere> | 2016-06-07 14:12:33 +0200 |
commit | 5b5db336e93622dc4c54e02a42a39d1b3b1a9fbd (patch) | |
tree | 884d1b3e84ff5d51879ee351bc84aaadc024ada0 /player | |
parent | 38ac5d5e7ba2e9a7234c45d431ef9b885f787a2c (diff) | |
download | mpv-5b5db336e93622dc4c54e02a42a39d1b3b1a9fbd.tar.bz2 mpv-5b5db336e93622dc4c54e02a42a39d1b3b1a9fbd.tar.xz |
build: silence -Wunused-result
For clang, it's enough to just put (void) around usages we are
intentionally ignoring the result of.
Since GCC does not seem to want to respect this decision, we are forced
to disable the warning globally.
Diffstat (limited to 'player')
-rw-r--r-- | player/client.c | 4 | ||||
-rw-r--r-- | player/playloop.c | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/player/client.c b/player/client.c index 45bd2297ba..f5a321b41d 100644 --- a/player/client.c +++ b/player/client.c @@ -280,7 +280,7 @@ static void wakeup_client(struct mpv_handle *ctx) if (ctx->wakeup_cb) ctx->wakeup_cb(ctx->wakeup_cb_ctx); if (ctx->wakeup_pipe[0] != -1) - write(ctx->wakeup_pipe[1], &(char){0}, 1); + (void)write(ctx->wakeup_pipe[1], &(char){0}, 1); } pthread_mutex_unlock(&ctx->wakeup_lock); } @@ -1559,7 +1559,7 @@ int mpv_get_wakeup_pipe(mpv_handle *ctx) pthread_mutex_lock(&ctx->wakeup_lock); if (ctx->wakeup_pipe[0] == -1) { if (mp_make_wakeup_pipe(ctx->wakeup_pipe) >= 0) - write(ctx->wakeup_pipe[1], &(char){0}, 1); + (void)write(ctx->wakeup_pipe[1], &(char){0}, 1); } int fd = ctx->wakeup_pipe[0]; pthread_mutex_unlock(&ctx->wakeup_lock); diff --git a/player/playloop.c b/player/playloop.c index 4e6910fc31..56701dbc34 100644 --- a/player/playloop.c +++ b/player/playloop.c @@ -612,7 +612,7 @@ static void handle_heartbeat_cmd(struct MPContext *mpctx) double now = mp_time_sec(); if (mpctx->next_heartbeat <= now) { mpctx->next_heartbeat = now + opts->heartbeat_interval; - system(opts->heartbeat_cmd); + (void)system(opts->heartbeat_cmd); } mpctx->sleeptime = MPMIN(mpctx->sleeptime, mpctx->next_heartbeat - now); } |