diff options
Diffstat (limited to 'examples/eepro100_eeprom.c')
-rw-r--r-- | examples/eepro100_eeprom.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/eepro100_eeprom.c b/examples/eepro100_eeprom.c index 60b937ef8de..020c31d2f53 100644 --- a/examples/eepro100_eeprom.c +++ b/examples/eepro100_eeprom.c @@ -78,9 +78,9 @@ static inline short inw(long addr) static inline void *memcpy(void *dst, const void *src, unsigned int len) { - void * ret = dst; - while (len-- > 0) *((char *)dst)++ = *((char *)src)++; - return ret; + char *ret = dst; + while (len-- > 0) *(ret)++ = *((char *)src)++; + return (void *)ret; } /* The EEPROM commands include the alway-set leading bit. */ |