From 639836914aef83120714a785cc0ab91d1f4d1c14 Mon Sep 17 00:00:00 2001 From: zeromus Date: Fri, 22 Oct 2010 05:05:46 +0000 Subject: [PATCH] another little warning-smashing change i found --- source/cache.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/cache.c b/source/cache.c index 7995319..8429299 100644 --- a/source/cache.c +++ b/source/cache.c @@ -297,7 +297,7 @@ bool _FAT_cache_writeSectors (CACHE* cache, sec_t sector, sec_t numSectors, cons sec_t sec; sec_t secs_to_write; CACHE_ENTRY* entry; - const uint8_t *src = buffer; + const uint8_t *src = (const uint8_t *)buffer; while(numSectors>0) {