From 283d80d9b267c46f334a85bb8756a9d52d4fd7e5 Mon Sep 17 00:00:00 2001 From: Kubat <mael.martin31@gmail.com> Date: Sun, 15 Nov 2020 19:54:57 +0100 Subject: [PATCH] MISC: Run astyle --- src/module/mpv.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/module/mpv.c b/src/module/mpv.c index e9a580af..5b955b4a 100644 --- a/src/module/mpv.c +++ b/src/module/mpv.c @@ -67,9 +67,9 @@ lmpv_prepare(volatile sqlite3 *db) int lmpv_observe_properties(mpv_handle *ctx) { - return (mpv_observe_property(ctx, 0, "ao-volume", MPV_FORMAT_INT64) >= 0) && - (mpv_observe_property(ctx, 0, "duration", MPV_FORMAT_INT64) >= 0) && - (mpv_observe_property(ctx, 0, "time-pos", MPV_FORMAT_INT64) >= 0) && + return (mpv_observe_property(ctx, 0, "ao-volume", MPV_FORMAT_INT64) >= 0) && + (mpv_observe_property(ctx, 0, "duration", MPV_FORMAT_INT64) >= 0) && + (mpv_observe_property(ctx, 0, "time-pos", MPV_FORMAT_INT64) >= 0) && (mpv_observe_property(ctx, 0, "pause", MPV_FORMAT_FLAG) >= 0); } -- GitLab