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 | |
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.
-rw-r--r-- | tapset/ChangeLog | 4 | ||||
-rw-r--r-- | tapset/nfsd.stp | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/tapset/ChangeLog b/tapset/ChangeLog index 2ac1dd84..4ee2f63d 100644 --- a/tapset/ChangeLog +++ b/tapset/ChangeLog @@ -1,3 +1,7 @@ +2007-09-24 David Smith <dsmith@redhat.com> + + * nfsd.stp (__svc_fh): Added missing semicolon. + 2007-09-23 Ulrich Drepper <drepper@redhat.com> * syscalls2.stp (readlinkat): Add. 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(); %} |