tftpd: fix the build of tests on i386 after 330696

It's those darn printf format specifiers again

Reported by:	cy, kibab
MFC after:	20 days
X-MFC-With:	330696
This commit is contained in:
Alan Somers 2018-03-10 18:07:31 +00:00
parent be3d357e23
commit f270fabc2b
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=330742

View File

@ -248,10 +248,10 @@ require_bufeq(const char *expected, ssize_t expected_len, const char *actual,
ssize_t i;
ATF_REQUIRE_EQ_MSG(expected_len, len,
"Expected %ld bytes but got %ld", expected_len, len);
"Expected %zd bytes but got %zd", expected_len, len);
for (i = 0; i < len; i++) {
ATF_REQUIRE_EQ_MSG(actual[i], expected[i],
"Expected %#hhx at position %ld; got %hhx instead",
"Expected %#hhx at position %zd; got %hhx instead",
expected[i], i, actual[i]);
}
}