diff options
author | Matthew Gregan <[email protected]> | 2022-06-30 11:50:51 +1200 |
---|---|---|
committer | Matthew Gregan <[email protected]> | 2022-06-30 11:50:51 +1200 |
commit | c4f7e5604cf09f9e48d578b71a57eb460491d768 (patch) | |
tree | 4f6308e042d2e34c8cba16c45676fab4d799b830 /src | |
parent | 744d638ba702dd4d364d03c423556dfa5517e3fa (diff) | |
download | cubeb-c4f7e5604cf09f9e48d578b71a57eb460491d768.tar.gz cubeb-c4f7e5604cf09f9e48d578b71a57eb460491d768.zip |
Clarify `cubeb_async_log_reset_threads` declaration.
Diffstat (limited to 'src')
-rw-r--r-- | src/cubeb_log.cpp | 2 | ||||
-rw-r--r-- | src/cubeb_log.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/cubeb_log.cpp b/src/cubeb_log.cpp index ff72e0e..bd34af1 100644 --- a/src/cubeb_log.cpp +++ b/src/cubeb_log.cpp @@ -123,7 +123,7 @@ cubeb_async_log(char const * fmt, ...) } void -cubeb_async_log_reset_threads() +cubeb_async_log_reset_threads(void) { if (!g_cubeb_log_callback) { return; diff --git a/src/cubeb_log.h b/src/cubeb_log.h index aee3180..4380da4 100644 --- a/src/cubeb_log.h +++ b/src/cubeb_log.h @@ -35,7 +35,7 @@ extern cubeb_log_callback g_cubeb_log_callback PRINTF_FORMAT(1, 2); void cubeb_async_log(const char * fmt, ...); void -cubeb_async_log_reset_threads(); +cubeb_async_log_reset_threads(void); #ifdef __cplusplus } |