diff options
author | Namhyung Kim <namhyung@gmail.com> | 2012-05-25 23:41:31 -0400 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2012-05-26 13:14:58 -0400 |
commit | 42c59cdab42b8909454e0d434e3977cd3b636fbd (patch) | |
tree | 1165019e64622aa49bd6e0d2d998f13d9fa8ae25 /tools/lib | |
parent | a00dc319e98161949aa87f71a17db32e925c3257 (diff) |
tools lib traceevent: Silence compiler warning on 32bit build
The gcc complains about casting a pointer to unsigned long long directly:
SUBDIR ../lib/traceevent/
CC FPIC event-parse.o
CC FPIC trace-seq.o
CC FPIC parse-filter.o
/home/namhyung/project/linux/tools/lib/traceevent/parse-filter.c: In function ‘get_value’:
/home/namhyung/project/linux/tools/lib/traceevent/parse-filter.c:1588: warning: cast from pointer to integer of different size
CC FPIC parse-utils.o
BUILD STATIC LIB libtraceevent.a
Signed-off-by: Namhyung Kim <namhyung@gmail.com>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Steven Rostedt <rostedt@goodmis.org>
Link: http://lkml.kernel.org/r/1338003691-3141-1-git-send-email-namhyung@gmail.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/lib')
-rw-r--r-- | tools/lib/traceevent/parse-filter.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/lib/traceevent/parse-filter.c b/tools/lib/traceevent/parse-filter.c index e08d21ffd3a6..dfcfe2c131de 100644 --- a/tools/lib/traceevent/parse-filter.c +++ b/tools/lib/traceevent/parse-filter.c | |||
@@ -1584,7 +1584,7 @@ get_value(struct event_format *event, | |||
1584 | const char *name; | 1584 | const char *name; |
1585 | 1585 | ||
1586 | name = get_comm(event, record); | 1586 | name = get_comm(event, record); |
1587 | return (unsigned long long)name; | 1587 | return (unsigned long)name; |
1588 | } | 1588 | } |
1589 | 1589 | ||
1590 | pevent_read_number_field(field, record->data, &val); | 1590 | pevent_read_number_field(field, record->data, &val); |