diff options
author | ddomingo <ddomingo@redhat.com> | 2009-02-02 12:58:11 +1000 |
---|---|---|
committer | ddomingo <ddomingo@redhat.com> | 2009-02-02 12:58:11 +1000 |
commit | dafdfd51215957e52fabc9335afb3da32ee8afa8 (patch) | |
tree | 7e6515dc9aa0c4c189f2872ef7731a80ea449768 /runtime/sdt.h | |
parent | 75dde87962b94fb7c4e9ebec750c1e96609702bf (diff) | |
parent | d44d3f7f73e2ef22694e9d2f6c48f77ba2204a59 (diff) | |
download | systemtap-steved-dafdfd51215957e52fabc9335afb3da32ee8afa8.tar.gz systemtap-steved-dafdfd51215957e52fabc9335afb3da32ee8afa8.tar.xz systemtap-steved-dafdfd51215957e52fabc9335afb3da32ee8afa8.zip |
Merge branch 'master' of ssh://sources.redhat.com/git/systemtap
Diffstat (limited to 'runtime/sdt.h')
-rw-r--r-- | runtime/sdt.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/sdt.h b/runtime/sdt.h index b36c6973..359ce4da 100644 --- a/runtime/sdt.h +++ b/runtime/sdt.h @@ -28,7 +28,7 @@ struct _probe_ ## probe \ static char probe ## _ ## probe_name [strlen(#probe)+1] \ __attribute__ ((section (".probes"))) \ = #probe; \ - static volatile struct _probe_ ## probe _probe_ ## probe __attribute__ ((section (".probes"))) = {STAP_SENTINEL,(long)& probe ## _ ## probe_name[0],argc}; +static volatile struct _probe_ ## probe _probe_ ## probe __attribute__ ((section (".probes"))) = {STAP_SENTINEL,(size_t)& probe ## _ ## probe_name[0],argc}; #define STAP_CONCAT(a,b) a ## b #define STAP_LABEL(p,n) \ |