summaryrefslogtreecommitdiffstats
path: root/misc
diff options
context:
space:
mode:
authorNRK <nrk@disroot.org>2023-10-19 16:16:12 +0600
committersfan5 <sfan5@live.de>2023-10-20 21:31:09 +0200
commit450a69b1d6592d8bc45c28250b86ba4a8b1d8e54 (patch)
treea24be9a1d14e518d42824d707c196aea894ccb50 /misc
parent2070331f649a1e19021d62d4e3a176dcd40732f4 (diff)
downloadmpv-450a69b1d6592d8bc45c28250b86ba4a8b1d8e54.tar.bz2
mpv-450a69b1d6592d8bc45c28250b86ba4a8b1d8e54.tar.xz
various: remove ATOMIC_VAR_INIT
the fallback needed it due to the struct wrapper. but the fallback is now removed so it's no longer needed. as for standard atomics, it was never really needed either, was useless and then made obsolete in C17 and removed in C23. ref: https://gustedt.wordpress.com/2018/08/06/c17-obsoletes-atomic_var_init/ ref: https://en.cppreference.com/w/c/atomic/ATOMIC_VAR_INIT
Diffstat (limited to 'misc')
-rw-r--r--misc/thread_tools.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/misc/thread_tools.c b/misc/thread_tools.c
index e97c51d07e..d75a37be78 100644
--- a/misc/thread_tools.c
+++ b/misc/thread_tools.c
@@ -126,7 +126,7 @@ struct mp_cancel *mp_cancel_new(void *talloc_ctx)
struct mp_cancel *c = talloc_ptrtype(talloc_ctx, c);
talloc_set_destructor(c, cancel_destroy);
*c = (struct mp_cancel){
- .triggered = ATOMIC_VAR_INIT(false),
+ .triggered = false,
.wakeup_pipe = {-1, -1},
};
pthread_mutex_init(&c->lock, NULL);