From 793d6da89cb8b77cca3378915848403a3124167e Mon Sep 17 00:00:00 2001 From: Florian Krohm Date: Sat, 28 Jul 2012 20:39:51 +0000 Subject: [PATCH] Fix error message in testcase git-svn-id: svn://svn.valgrind.org/valgrind/trunk@12801 --- none/tests/s390x/cu21.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/none/tests/s390x/cu21.c b/none/tests/s390x/cu21.c index b10e140729..d2d1f11109 100644 --- a/none/tests/s390x/cu21.c +++ b/none/tests/s390x/cu21.c @@ -254,7 +254,8 @@ write_and_check_aux(uint16_t *input, unsigned num_input_bytes, for (i = num_expected_output_bytes; i < sizeof buff; ++i) if (buff[i] != fill_byte) ++num_errors; if (num_errors) - fprintf(stderr, "*** wrote more than one byte\n"); + fprintf(stderr, "*** wrote more than %u bytes\n", + num_expected_output_bytes); } void -- 2.47.2