diff options
author | Paul Adenot <[email protected]> | 2020-10-29 16:28:20 +0100 |
---|---|---|
committer | Paul Adenot <[email protected]> | 2020-11-02 15:37:29 +0000 |
commit | e36697bb762e65f691cd6292e41aad1d0f628e2b (patch) | |
tree | eaec4fc55ccb794d15b74fc5fa63962f6a081834 /src | |
parent | de1a1f84394c1bb4f57e47f147411f6cc39a1317 (diff) | |
download | cubeb-e36697bb762e65f691cd6292e41aad1d0f628e2b.tar.gz cubeb-e36697bb762e65f691cd6292e41aad1d0f628e2b.zip |
Use C++ style unused argument instead of C-style.
Diffstat (limited to 'src')
-rw-r--r-- | src/cubeb_aaudio.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/cubeb_aaudio.cpp b/src/cubeb_aaudio.cpp index 93f0d1b..d429dd5 100644 --- a/src/cubeb_aaudio.cpp +++ b/src/cubeb_aaudio.cpp @@ -420,9 +420,8 @@ static void state_thread(cubeb* ctx) } static char const * -aaudio_get_backend_id(cubeb * ctx) +aaudio_get_backend_id(cubeb * /* ctx */) { - (void)ctx; return "aaudio"; } |