From 6c416c80f46485576f01d07bc750298424f92013 Mon Sep 17 00:00:00 2001 From: hunt Date: Wed, 29 Mar 2006 05:19:06 +0000 Subject: 2006-03-28 Martin Hunt * testsuite/buildok/syscall.stp: Update so it works again. --- testsuite/buildok/syscall.stp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'testsuite/buildok/syscall.stp') diff --git a/testsuite/buildok/syscall.stp b/testsuite/buildok/syscall.stp index a802cc97..82689eee 100755 --- a/testsuite/buildok/syscall.stp +++ b/testsuite/buildok/syscall.stp @@ -1,8 +1,8 @@ #! stap -up4 probe syscall.*, syscall.*.return { - if (returnp) - printf("%d\n", returnval()) + if (retstr != "") + printf("%s\n", retstr) else - printf("%s (%s) = ", name, argstr) + printf("%s: %s (%s) = ", execname(), name, argstr) } -- cgit