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_fetch.h | |
| parent | 1b7c8e72c679aaf407dc26db5695f04cdcc84a42 (diff) | |
fix clang warnings on windows
Diffstat (limited to 'sokol_fetch.h')
| -rw-r--r-- | sokol_fetch.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sokol_fetch.h b/sokol_fetch.h index 8d19b75f..ad7d993e 100644 --- a/sokol_fetch.h +++ b/sokol_fetch.h @@ -1402,7 +1402,7 @@ static void _sfetch_log(sfetch_log_item_t log_item, uint32_t log_level, uint32_t const char* filename = 0; const char* message = 0; #endif - _sfetch->desc.logger.func("sfetch", log_level, log_item, message, line_nr, filename, _sfetch->desc.logger.user_data); + _sfetch->desc.logger.func("sfetch", log_level, (uint32_t)log_item, message, line_nr, filename, _sfetch->desc.logger.user_data); } else { // for log level PANIC it would be 'undefined behaviour' to continue if (log_level == 0) { |