diff options
| author | Andre Weissflog <floooh@gmail.com> | 2025-03-28 10:54:20 +0100 |
|---|---|---|
| committer | Andre Weissflog <floooh@gmail.com> | 2025-03-28 10:54:20 +0100 |
| commit | 8dab496f69ea4cbcf4ce86e5359481cbef086023 (patch) | |
| tree | 78bce1554fb3625f72540cb8d81d6f71a186c6b1 /sokol_audio.h | |
| parent | 1b7c8e72c679aaf407dc26db5695f04cdcc84a42 (diff) | |
fix clang warnings on windows
Diffstat (limited to 'sokol_audio.h')
| -rw-r--r-- | sokol_audio.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sokol_audio.h b/sokol_audio.h index 717a9b99..78c25572 100644 --- a/sokol_audio.h +++ b/sokol_audio.h @@ -1127,7 +1127,7 @@ static void _saudio_log(saudio_log_item log_item, uint32_t log_level, uint32_t l const char* filename = 0; const char* message = 0; #endif - _saudio.desc.logger.func("saudio", log_level, log_item, message, line_nr, filename, _saudio.desc.logger.user_data); + _saudio.desc.logger.func("saudio", log_level, (uint32_t)log_item, message, line_nr, filename, _saudio.desc.logger.user_data); } else { // for log level PANIC it would be 'undefined behaviour' to continue |