From c346d774fe8b27c56a543f31bd1bd8ee53eea837 Mon Sep 17 00:00:00 2001 From: kugel Date: Mon, 30 Aug 2010 20:47:26 +0000 Subject: [PATCH] Change lc_open_from_mem() return type to void* git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27947 a1c6a512-1295-4272-9138-f99709370657 --- firmware/export/load_code.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/firmware/export/load_code.h b/firmware/export/load_code.h index e37af786df..6f5e5d0842 100644 --- a/firmware/export/load_code.h +++ b/firmware/export/load_code.h @@ -28,7 +28,7 @@ extern void *lc_open(const char *filename, char *buf, size_t buf_size); /* header is always at the beginning of the blob, and handle actually points * to the start of the blob */ -static inline char *lc_open_from_mem(void* addr, size_t blob_size) +static inline void *lc_open_from_mem(void* addr, size_t blob_size) { (void)blob_size; cpucache_invalidate(); -- 2.11.4.GIT