From fbae41020d8968d0e65af08584df4736b5ed7239 Mon Sep 17 00:00:00 2001 From: Chris Robinson Date: Mon, 24 Dec 2018 19:29:01 -0800 Subject: Remove extraneous typedef, struct, and enum keywords --- OpenAL32/alListener.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'OpenAL32/alListener.cpp') diff --git a/OpenAL32/alListener.cpp b/OpenAL32/alListener.cpp index c86c8374..b7fdf9ce 100644 --- a/OpenAL32/alListener.cpp +++ b/OpenAL32/alListener.cpp @@ -405,7 +405,7 @@ void UpdateListenerProps(ALCcontext *context) props = static_cast(al_calloc(16, sizeof(*props))); else { - struct ALlistenerProps *next; + ALlistenerProps *next; do { next = props->next.load(std::memory_order_relaxed); } while(context->FreeListenerProps.compare_exchange_weak(props, next, -- cgit v1.2.3