memmap.c - another warning fix

This commit is contained in:
twinaphex 2015-08-22 18:47:04 +02:00
parent f7a5479778
commit aa35f56252

View File

@ -155,6 +155,7 @@ int memsync(void *start, void *end)
sys_icache_invalidate(start, len);
return 0;
#elif defined(__arm__) && !defined(__QNX__)
(void)len;
__clear_cache(start, end);
return 0;
#elif defined(HAVE_MMAN)