diff options
author | Mark Wielaard <mjw@redhat.com> | 2009-08-19 11:58:44 +0200 |
---|---|---|
committer | Mark Wielaard <mjw@redhat.com> | 2009-08-19 11:58:44 +0200 |
commit | cd62e218a0ee56fafae1c4f61b81d327bc72305b (patch) | |
tree | 7127f72cedf258236c7bf599785992e2c6ddcf70 | |
parent | 2531fc1e953b32d7d327da8a9b39ba540789f795 (diff) | |
download | systemtap-steved-cd62e218a0ee56fafae1c4f61b81d327bc72305b.tar.gz systemtap-steved-cd62e218a0ee56fafae1c4f61b81d327bc72305b.tar.xz systemtap-steved-cd62e218a0ee56fafae1c4f61b81d327bc72305b.zip |
Fix typo in sdt_types.stp (missing newline).
* testsuite/systemtap.base/sdt_types.stp (int_var): Add \n to printf.
-rw-r--r-- | testsuite/systemtap.base/sdt_types.stp | 4 |
1 files changed, 2 insertions, 2 deletions
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") |