From cd62e218a0ee56fafae1c4f61b81d327bc72305b Mon Sep 17 00:00:00 2001 From: Mark Wielaard Date: Wed, 19 Aug 2009 11:58:44 +0200 Subject: Fix typo in sdt_types.stp (missing newline). * testsuite/systemtap.base/sdt_types.stp (int_var): Add \n to printf. --- testsuite/systemtap.base/sdt_types.stp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'testsuite/systemtap.base') diff --git a/testsuite/systemtap.base/sdt_types.stp b/testsuite/systemtap.base/sdt_types.stp index 5f9ebcab..1742b8b8 100644 --- a/testsuite/systemtap.base/sdt_types.stp +++ b/testsuite/systemtap.base/sdt_types.stp @@ -125,9 +125,9 @@ probe process(@1).mark("short_int_ptr_volatile_var") probe process(@1).mark("int_var") { if ($arg1 != 65536) - printf("FAIL: int_var") + printf("FAIL: int_var\n") else - printf("PASS: int_var") + printf("PASS: int_var\n") } probe process(@1).mark("const_int_var") -- cgit