From 45efd2585a00e3410991f33e7103ed66a1b328e7 Mon Sep 17 00:00:00 2001 From: "Juan J. Martinez" Date: Tue, 29 Aug 2023 12:24:43 +0100 Subject: Use uint8_t instead of char --- include/ubox_assets.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include/ubox_assets.h') diff --git a/include/ubox_assets.h b/include/ubox_assets.h index c2dcf65..e6f4292 100644 --- a/include/ubox_assets.h +++ b/include/ubox_assets.h @@ -11,7 +11,7 @@ * 3. call ubox_assets_free to discard the DIR (and pak file if exists). */ uint8_t ubox_assets_init(const char *dirname); -uint8_t ubox_assets_read(const char *name, char **data, size_t *data_size); +uint8_t ubox_assets_read(const char *name, uint8_t **data, size_t *data_size); void ubox_assets_free(); #endif /* _UBOX_ASSETS_H */ -- cgit v1.2.3