summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSteve Dickson <steved@redhat.com>2011-06-01 11:51:22 -0400
committerSteve Dickson <steved@redhat.com>2011-06-01 11:51:22 -0400
commit178b38cbd6e97e5d70cb58f32bf5853e73af4cf5 (patch)
treebd0162f0cd0eca57aeb02205f4f807dc39f2a941
parent05d992ab6c54a025d8c7c6f441579e5c55ab2288 (diff)
downloadsystemtap-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.stp2
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: