summaryrefslogtreecommitdiffstats
path: root/examples/eepro100_eeprom.c
diff options
context:
space:
mode:
Diffstat (limited to 'examples/eepro100_eeprom.c')
-rw-r--r--examples/eepro100_eeprom.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/eepro100_eeprom.c b/examples/eepro100_eeprom.c
index 60b937ef8d..020c31d2f5 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. */
OpenPOWER on IntegriCloud