diff --git a/byte/byte_diff.c b/byte/byte_diff.c index 9dbd1a4..b7c0864 100644 --- a/byte/byte_diff.c +++ b/byte/byte_diff.c @@ -8,7 +8,7 @@ int byte_diff(const void* a, unsigned int len, const void* b) { register const char* s=a; register const char* t=b; - register const char* u=b+len; + register const char* u=t+len; register int j; j=0; for (;;) {