From: Francis Deslauriers Date: Mon, 11 May 2020 19:04:43 +0000 (-0400) Subject: Cleanup: bytecode: typo: "s16" -> "u16" X-Git-Tag: v2.13.0-rc1~218 X-Git-Url: http://git.lttng.org/?p=lttng-modules.git;a=commitdiff_plain;h=5fae98f7a1c3fa7976c535237ea12709ae7acccf Cleanup: bytecode: typo: "s16" -> "u16" Signed-off-by: Francis Deslauriers Signed-off-by: Mathieu Desnoyers Change-Id: I68901ca2d89d08f2cb69853816e0214c588aa7f8 --- diff --git a/src/lttng-filter-interpreter.c b/src/lttng-filter-interpreter.c index 5ba7e230..9599f9a6 100644 --- a/src/lttng-filter-interpreter.c +++ b/src/lttng-filter-interpreter.c @@ -511,7 +511,7 @@ static int dynamic_load_field(struct estack_entry *stack_top) { uint16_t tmp; - dbg_printk("op load field s16\n"); + dbg_printk("op load field u16\n"); tmp = *(uint16_t *) stack_top->u.ptr.ptr; if (stack_top->u.ptr.rev_bo) __swab16s(&tmp);