diff options
author | dsmith <dsmith> | 2007-09-24 13:56:35 +0000 |
---|---|---|
committer | dsmith <dsmith> | 2007-09-24 13:56:35 +0000 |
commit | dc1e18055d7515cc36d8412e4f3863c5f01dc120 (patch) | |
tree | 69d1ed677880e261be52235a4bc0cd180253d8a4 /tapset/nfsd.stp | |
parent | a1def90ddfbf047c4e1ce0262fb87bcc821c73b1 (diff) | |
download | systemtap-steved-dc1e18055d7515cc36d8412e4f3863c5f01dc120.tar.gz systemtap-steved-dc1e18055d7515cc36d8412e4f3863c5f01dc120.tar.xz systemtap-steved-dc1e18055d7515cc36d8412e4f3863c5f01dc120.zip |
2007-09-24 David Smith <dsmith@redhat.com>
* nfsd.stp (__svc_fh): Added missing semicolon.
Diffstat (limited to 'tapset/nfsd.stp')
-rw-r--r-- | tapset/nfsd.stp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tapset/nfsd.stp b/tapset/nfsd.stp index c5ddd77c..de00cd3f 100644 --- a/tapset/nfsd.stp +++ b/tapset/nfsd.stp @@ -117,7 +117,7 @@ function __svc_fh:string(fh :long) %{ /* pure */ kread(&(fh->fh_base.fh_pad[2])), kread(&(fh->fh_base.fh_pad[3])), kread(&(fh->fh_base.fh_pad[4])), - kread(&(fh->fh_base.fh_pad[5]))) + kread(&(fh->fh_base.fh_pad[5]))); CATCH_DEREF_FAULT(); %} |