diff options
Diffstat (limited to 'test/test_logging.cpp')
-rw-r--r-- | test/test_logging.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/test_logging.cpp b/test/test_logging.cpp index 5d9691d..fef8e20 100644 --- a/test/test_logging.cpp +++ b/test/test_logging.cpp @@ -26,7 +26,7 @@ std::atomic<uint32_t> log_statements_received = {0}; std::atomic<uint32_t> data_callback_call_count = {0}; -void +static void test_logging_callback(char const * fmt, ...) { log_statements_received++; @@ -40,7 +40,7 @@ test_logging_callback(char const * fmt, ...) #endif // PRINT_LOGS_TO_STDERR } -long +static long data_cb_load(cubeb_stream * stream, void * user, const void * inputbuffer, void * outputbuffer, long nframes) { @@ -48,7 +48,7 @@ data_cb_load(cubeb_stream * stream, void * user, const void * inputbuffer, return nframes; } -void +static void state_cb(cubeb_stream * stream, void * /*user*/, cubeb_state state) { if (stream == NULL) |