diff options
author | ddomingo <ddomingo@redhat.com> | 2008-10-27 12:09:07 +1000 |
---|---|---|
committer | ddomingo <ddomingo@redhat.com> | 2008-10-27 12:09:07 +1000 |
commit | 165cfc683521e3e323e54a7c5b24628d84c7eb63 (patch) | |
tree | 79090f333236b10c6b8c50a86db84e01d6197ba2 /testsuite | |
parent | c57eb295b15067b8f7964c5e5bd798f1d31a36e5 (diff) | |
download | systemtap-steved-165cfc683521e3e323e54a7c5b24628d84c7eb63.tar.gz systemtap-steved-165cfc683521e3e323e54a7c5b24628d84c7eb63.tar.xz systemtap-steved-165cfc683521e3e323e54a7c5b24628d84c7eb63.zip |
minor revision, shortening long line)
Diffstat (limited to 'testsuite')
-rwxr-xr-x | testsuite/systemtap.examples/io/disktop.stp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuite/systemtap.examples/io/disktop.stp b/testsuite/systemtap.examples/io/disktop.stp index 2637d735..fcfe79ed 100755 --- a/testsuite/systemtap.examples/io/disktop.stp +++ b/testsuite/systemtap.examples/io/disktop.stp @@ -52,7 +52,7 @@ probe timer.ms(5000) { } /* print top ten I/O */ foreach ([process,cmd,userid,parent,action] in io_stat- limit 10) - printf("%8d %8d %8d %25s %8s %4s %12d\n",userid,process,parent,cmd,device[process,cmd,userid,parent,action],action,io_stat[process,cmd,userid,parent,action]) + printf("%8d %8d %8d %25s %8s %4s %12d\n",userid,process,parent,cmd,device[process,cmd,userid,parent,action], action,io_stat[process,cmd,userid,parent,action]) /* clear data */ delete io_stat |