From: Francis Deslauriers Date: Fri, 8 May 2020 18:52:20 +0000 (-0400) Subject: Cleanup: bytecode: typo: "s16" -> "u16" X-Git-Tag: v2.13.0-rc1~497 X-Git-Url: http://git.lttng.org/?p=lttng-ust.git;a=commitdiff_plain;h=055d27d76978efd97f04dbee3e53c31b214ebfc6 Cleanup: bytecode: typo: "s16" -> "u16" Signed-off-by: Francis Deslauriers Signed-off-by: Mathieu Desnoyers Change-Id: If3a0e0422ce91d26c33b2e040a1463879e8d8505 --- diff --git a/liblttng-ust/lttng-filter-interpreter.c b/liblttng-ust/lttng-filter-interpreter.c index 06fab85f..6f13aa04 100644 --- a/liblttng-ust/lttng-filter-interpreter.c +++ b/liblttng-ust/lttng-filter-interpreter.c @@ -530,7 +530,7 @@ static int dynamic_load_field(struct estack_entry *stack_top) { uint16_t tmp; - dbg_printf("op load field s16\n"); + dbg_printf("op load field u16\n"); tmp = *(uint16_t *) stack_top->u.ptr.ptr; if (stack_top->u.ptr.rev_bo) tmp = bswap_16(tmp);