diff options
| author | Andre Weissflog <floooh@gmail.com> | 2022-11-05 14:41:15 +0100 |
|---|---|---|
| committer | Andre Weissflog <floooh@gmail.com> | 2022-11-05 14:41:15 +0100 |
| commit | 2135cb2355dd55b3bc5c00a2b1ba66cc4351ef9c (patch) | |
| tree | c27414929e2922e7ea325c0dc35ba86af778e261 | |
| parent | b2e36e4c148218f52587689ec8e9c165d2c98d1d (diff) | |
sokol_fetch.h: fix clang -Wshorten-64-to-32 warning
| -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 b102a47f..c2bca921 100644 --- a/sokol_fetch.h +++ b/sokol_fetch.h @@ -1205,7 +1205,7 @@ typedef struct { sfetch_error_t error_code; bool finished; /* user thread only */ - uint32_t user_data_size; + size_t user_data_size; uint64_t user_data[SFETCH_MAX_USERDATA_UINT64]; } _sfetch_item_user_t; |