--- embedaddon/libiconv/srclib/memmove.c 2012/02/21 22:57:48 1.1.1.1 +++ embedaddon/libiconv/srclib/memmove.c 2012/05/29 09:29:43 1.1.1.2 @@ -20,7 +20,7 @@ memmove (void *dest0, void const *source0, size_t leng { /* Moving from hi mem to low mem; start at beginning. */ for (; length; --length) - *dest++ = *source++; + *dest++ = *source++; } return dest0; }