summaryrefslogtreecommitdiffstats
path: root/testsuite/systemtap.printf
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/systemtap.printf')
-rw-r--r--testsuite/systemtap.printf/char1.stp5
1 files changed, 2 insertions, 3 deletions
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
+}