Message ID | 20220731120702.522724bd@rorschach.local.home (mailing list archive) |
---|---|
State | Accepted |
Commit | c5493e713ca88a49c620181559f4c55aa46f01d7 |
Headers | show |
Series | PATCH] libtraceevent: Remove double assignment of val in eval_num_arg() | expand |
diff --git a/src/event-parse.c b/src/event-parse.c index b3caff6..980e980 100644 --- a/src/event-parse.c +++ b/src/event-parse.c @@ -4314,7 +4314,6 @@ eval_num_arg(void *data, int size, struct tep_event *event, struct tep_print_arg val = (unsigned long)data; break; } - val = (unsigned long long)((unsigned long)data + offset); val = (unsigned long)data + offset; break; default: /* not sure what to do there */