aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorPaul Selkirk <paul@psgd.org>2016-05-24 21:39:49 -0400
committerPaul Selkirk <paul@psgd.org>2016-05-24 21:39:49 -0400
commitecdbf7695cf8c05837dfd8925347a8e45a11de2b (patch)
treefadd29746d802c38e7b3b6b4e8d9591aabaec71d /tests
parentd20ac4036667e9cbf41c4a8011e53ca53a5a2a64 (diff)
Widen an int in an error message, for consistency.
Diffstat (limited to 'tests')
-rw-r--r--tests/test-mkmif.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test-mkmif.c b/tests/test-mkmif.c
index 0729628..a382cf6 100644
--- a/tests/test-mkmif.c
+++ b/tests/test-mkmif.c
@@ -122,7 +122,7 @@ static hal_error_t write_read_test(const hal_core_t *core)
}
if (readback != data) {
- printf("read %04x, expected %04x\n", (unsigned int)readback, (unsigned int)data);
+ printf("read %08x, expected %08x\n", (unsigned int)readback, (unsigned int)data);
return HAL_ERROR_IO_UNEXPECTED;
}