From 93f589fc4ea3a2882c039bf6da29c615550d0ee6 Mon Sep 17 00:00:00 2001 From: Josh Stone Date: Mon, 27 Oct 2008 14:16:18 -0700 Subject: Expose an i686 problem in printf %c support --- testsuite/systemtap.printf/char1.stp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'testsuite/systemtap.printf') diff --git a/testsuite/systemtap.printf/char1.stp b/testsuite/systemtap.printf/char1.stp index d7db1288..207d1bc5 100644 --- a/testsuite/systemtap.printf/char1.stp +++ b/testsuite/systemtap.printf/char1.stp @@ -2,8 +2,7 @@ probe begin { printf("%c", 115) printf("%c", 116) - printf("%c", 97) - printf("%c", 112) + printf("%c%c", 97, 112) print("\n") exit() -} \ No newline at end of file +} -- cgit