summaryrefslogtreecommitdiffstats
path: root/common
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 /common
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 'common')
-rw-r--r--common/msg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/msg.c b/common/msg.c
index 0984cf0f5e..c2ec9e26ee 100644
--- a/common/msg.c
+++ b/common/msg.c
@@ -524,7 +524,7 @@ void mp_msg_init(struct mpv_global *global)
struct mp_log_root *root = talloc_zero(NULL, struct mp_log_root);
*root = (struct mp_log_root){
.global = global,
- .reload_counter = ATOMIC_VAR_INIT(1),
+ .reload_counter = 1,
};
pthread_mutex_init(&root->lock, NULL);