diff options
| author | Andre Weissflog <floooh@gmail.com> | 2025-01-30 18:36:02 +0100 |
|---|---|---|
| committer | Andre Weissflog <floooh@gmail.com> | 2025-01-30 18:36:02 +0100 |
| commit | adf2c22d94c3bc8f2593b0fc3b63e29ed360510f (patch) | |
| tree | 43b06484139a7c064808346023acea36098a4a86 /sokol_fetch.h | |
| parent | 7476b7fcc7df55fbac1c37a49fa37b4a87a62cbc (diff) | |
add -Wextra-semi to CI tests and fix resulting warnings
Diffstat (limited to 'sokol_fetch.h')
| -rw-r--r-- | sokol_fetch.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sokol_fetch.h b/sokol_fetch.h index d2f989ae..b0da19d1 100644 --- a/sokol_fetch.h +++ b/sokol_fetch.h @@ -2213,7 +2213,7 @@ EM_JS(void, sfetch_js_send_head_request, (uint32_t slot_id, const char* path_cst } }; req.send(); -}); +}) /* if bytes_to_read != 0, a range-request will be sent, otherwise a normal request */ EM_JS(void, sfetch_js_send_get_request, (uint32_t slot_id, const char* path_cstr, uint32_t offset, uint32_t bytes_to_read, void* buf_ptr, uint32_t buf_size), { @@ -2244,7 +2244,7 @@ EM_JS(void, sfetch_js_send_get_request, (uint32_t slot_id, const char* path_cstr } }; req.send(); -}); +}) /*=== emscripten specific C helper functions =================================*/ #ifdef __cplusplus |