]> sourceware.org Git - systemtap.git/commitdiff
2007-09-24 David Smith <dsmith@redhat.com>
authordsmith <dsmith>
Mon, 24 Sep 2007 13:56:35 +0000 (13:56 +0000)
committerdsmith <dsmith>
Mon, 24 Sep 2007 13:56:35 +0000 (13:56 +0000)
* nfsd.stp (__svc_fh): Added missing semicolon.

tapset/ChangeLog
tapset/nfsd.stp

index 2ac1dd847fb9d7ae4578f5aba83c45ec3930303b..4ee2f63d22f07838c8aaf3e614a27e3a3b5f8266 100644 (file)
@@ -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.
index c5ddd77c606bc46c00e55e98d9585277a89b43f9..de00cd3fa63f18c9b243f44cd017355fea625fef 100644 (file)
@@ -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();
 %}
 
This page took 0.031587 seconds and 5 git commands to generate.