mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-10-14 10:37:38 -04:00
Change lc_open_from_mem() return type to void*
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27947 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
b81a116f7f
commit
a1997c13c1
1 changed files with 1 additions and 1 deletions
|
@ -28,7 +28,7 @@
|
||||||
extern void *lc_open(const char *filename, char *buf, size_t buf_size);
|
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
|
/* header is always at the beginning of the blob, and handle actually points
|
||||||
* to the start of the blob */
|
* 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;
|
(void)blob_size;
|
||||||
cpucache_invalidate();
|
cpucache_invalidate();
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue