aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndi Kleen <ak@linux.intel.com>2009-09-16 15:11:18 +0200
committerAndi Kleen <ak@linux.intel.com>2009-09-16 15:11:18 +0200
commit6be01497121c9231fbe40aafb746e0f8ff237500 (patch)
tree27ae8d615efbb7a3e8258cb2c4b50c25f0192d2c
parent494b8253a7ffcbee6cec65043e8f629a524ee0fd (diff)
downloadmce-test-6be01497121c9231fbe40aafb746e0f8ff237500.tar.gz
tinjpage: fix another printf to new format
Signed-off-by: Andi Kleen <ak@linux.intel.com>
-rw-r--r--tsrc/tinjpage.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/tsrc/tinjpage.c b/tsrc/tinjpage.c
index 90796a9..3dd3e59 100644
--- a/tsrc/tinjpage.c
+++ b/tsrc/tinjpage.c
@@ -280,7 +280,8 @@ static void do_file_clean(int flags, char *name)
fd, 0);
close(fd);
testmem(name, page, MREAD_OK);
- printf("%x\n", *(unsigned char *)page); /* reread page from disk */
+ /* reread page from disk */
+ printf("\t reading %x\n", *(unsigned char *)page);
testmem(name, page, MWRITE_OK);
}