summaryrefslogtreecommitdiffstats
path: root/osdep/windows_utils.c
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 /osdep/windows_utils.c
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 'osdep/windows_utils.c')
-rw-r--r--osdep/windows_utils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/osdep/windows_utils.c b/osdep/windows_utils.c
index 6a5abff291..b83a7ced9c 100644
--- a/osdep/windows_utils.c
+++ b/osdep/windows_utils.c
@@ -164,7 +164,7 @@ char *mp_HRESULT_to_str_buf(char *buf, size_t buf_size, HRESULT hr)
bool mp_w32_create_anon_pipe(HANDLE *server, HANDLE *client,
struct w32_create_anon_pipe_opts *opts)
{
- static atomic_ulong counter = ATOMIC_VAR_INIT(0);
+ static atomic_ulong counter = 0;
// Generate pipe name
unsigned long id = atomic_fetch_add(&counter, 1);