]> sourceware.org Git - systemtap.git/commitdiff
Fix )( typo in sdt.h STAP_PROBE9 parm9.
authorMark Wielaard <mjw@redhat.com>
Mon, 16 Feb 2009 10:55:02 +0000 (11:55 +0100)
committerMark Wielaard <mjw@redhat.com>
Mon, 16 Feb 2009 10:55:02 +0000 (11:55 +0100)
runtime/ChangeLog
runtime/sdt.h

index 24de840c461c983e6d5fade9244562d1aefea8df..ea3643a1f2796a4d598e1936079c89c855ee4b8c 100644 (file)
@@ -1,3 +1,7 @@
+2009-02-16  Mark Wielaard  <scox@redhat.com>
+
+       * sdt.h (STAP_PROBE9): Fix )( typo in parm9.
+
 2009-02-15  Stan Cox  <scox@redhat.com>
 
        * sdt.h (STAP_PROBE): Handle c++ via .probe, c via .label.
index f09d4346af2b35d25dd23aae2c50af058b3ce4e0..98a583dc3591cc2e8cf89a1cec3ad9bfb55e27de 100644 (file)
@@ -152,7 +152,7 @@ STAP_LABEL(probe,__LINE__):                         \
   volatile typeof((parm6)) arg6  __attribute__ ((unused)) = parm6; \
   volatile typeof((parm7)) arg7  __attribute__ ((unused)) = parm7; \
   volatile typeof((parm8)) arg8  __attribute__ ((unused)) = parm8; \
-  volatile typeof((parm9)) arg9  __attribute__ ((unused() = parm9;     \
+  volatile typeof((parm9)) arg9  __attribute__ ((unused)) = parm9; \
 STAP_LABEL(probe,__LINE__):                            \
   asm volatile ("nop" :: "g"(arg1), "g"(arg2), "g"(arg3), "g"(arg4), "g"(arg5), "g"(arg6), "g"(arg7), "g"(arg8), "g"(arg9)); \
   STAP_PROBE_STRUCT(probe,(size_t)&& STAP_LABEL(probe,__LINE__)) \
This page took 0.031674 seconds and 5 git commands to generate.