aboutsummaryrefslogtreecommitdiff
path: root/sokol_fetch.h
diff options
context:
space:
mode:
authorAndre Weissflog <floooh@gmail.com>2022-11-05 14:41:15 +0100
committerAndre Weissflog <floooh@gmail.com>2022-11-05 14:41:15 +0100
commit2135cb2355dd55b3bc5c00a2b1ba66cc4351ef9c (patch)
treec27414929e2922e7ea325c0dc35ba86af778e261 /sokol_fetch.h
parentb2e36e4c148218f52587689ec8e9c165d2c98d1d (diff)
sokol_fetch.h: fix clang -Wshorten-64-to-32 warning
Diffstat (limited to 'sokol_fetch.h')
-rw-r--r--sokol_fetch.h2
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;