From 8b82df15e839638a366f2cafbbe9c624b1466c2f Mon Sep 17 00:00:00 2001 From: Mathieu Desnoyers Date: Thu, 22 Nov 2012 13:50:34 -0500 Subject: [PATCH] filter interpreter cleanup: use uint64_t for retval Reported-by: Christian Babeux Signed-off-by: Mathieu Desnoyers --- liblttng-ust/lttng-filter-interpreter.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/liblttng-ust/lttng-filter-interpreter.c b/liblttng-ust/lttng-filter-interpreter.c index 690ebde9..4b75f0bc 100644 --- a/liblttng-ust/lttng-filter-interpreter.c +++ b/liblttng-ust/lttng-filter-interpreter.c @@ -168,7 +168,7 @@ uint64_t lttng_filter_interpret_bytecode(void *filter_data, struct bytecode_runtime *bytecode = filter_data; void *pc, *next_pc, *start_pc; int ret = -EINVAL; - int retval = 0; + uint64_t retval = 0; struct estack _stack; struct estack *stack = &_stack; register int64_t ax = 0, bx = 0; -- 2.34.1