Typo in debug output

This commit is contained in:
Lorenz Meier 2013-10-10 08:37:24 +02:00
parent e0e708241b
commit 6ffa2955b9
1 changed files with 1 additions and 1 deletions

View File

@ -226,7 +226,7 @@ test_file(int argc, char *argv[])
}
if ((read_buf + 1)[j] != write_buf[j]) {
warnx("COMPARISON ERROR: byte %d, align shift: %d: %u != %u", j, 1/*(i % 64)*/, (unsigned int)read_buf[j], (unsigned int)write_buf[j]);
warnx("COMPARISON ERROR: byte %d, align shift: %d: %u != %u", j, 1/*(i % 64)*/, (unsigned int)read_ptr[j], (unsigned int)write_buf[j]);
unalign_read_ok = false;
unalign_read_err_count++;