diff options
| author | Steve Dickson <steved@redhat.com> | 2011-06-01 11:51:22 -0400 |
|---|---|---|
| committer | Steve Dickson <steved@redhat.com> | 2011-06-01 11:51:22 -0400 |
| commit | 178b38cbd6e97e5d70cb58f32bf5853e73af4cf5 (patch) | |
| tree | bd0162f0cd0eca57aeb02205f4f807dc39f2a941 | |
| parent | 05d992ab6c54a025d8c7c6f441579e5c55ab2288 (diff) | |
| download | systemtap-178b38cbd6e97e5d70cb58f32bf5853e73af4cf5.tar.gz systemtap-178b38cbd6e97e5d70cb58f32bf5853e73af4cf5.tar.xz systemtap-178b38cbd6e97e5d70cb58f32bf5853e73af4cf5.zip | |
Fixed a typo in xprt_dump()
Signed-off-by: Steve Dickson <steved@redhat.com>
| -rw-r--r-- | tapset/task.stp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tapset/task.stp b/tapset/task.stp index 04b1ece..0d927ca 100644 --- a/tapset/task.stp +++ b/tapset/task.stp @@ -44,7 +44,7 @@ function xprt_dump:string(_task:long) sprintf(buf+cc, "xprt is NULL"); goto leave; } - sprintf(buf+cc, ": xprt 0x%p ops 0x%p state 0x%x", + sprintf(buf+cc, ": xprt 0x%p ops 0x%p state 0x%lx", xprt, xprt->ops, xprt->state); cc = strlen(buf); leave: |
