fusee-primary: Fix always false conditional in xmemmove

This was corrected in 4b8455baf9 for
fusee-secondary, but I neglected to also fix it in fusee-primary (my
bad!)
This commit is contained in:
Lioncash 2018-08-24 22:30:32 -04:00
parent 43bde3fcc9
commit a400b10921

View file

@ -17,7 +17,7 @@ static void *xmemmove(void *dst, const void *src, size_t len)
for (size_t i = 0; i < len; i++) {
dst8[i] = src8[i];
}
} else if (src8 > dst8) {
} else if (dst8 > src8) {
for (size_t i = len; len > 0; len--)
dst8[i - 1] = src8[i - 1];
}