From 0f70c711404e0483be084167e04d582d0fd7a51d Mon Sep 17 00:00:00 2001 From: RohithRaju Date: Thu, 14 Dec 2023 10:10:28 +0000 Subject: [PATCH] update: use unsigned long Signed-off-by: RohithRaju --- userspace/libsinsp/test/filterchecks/evt.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/userspace/libsinsp/test/filterchecks/evt.cpp b/userspace/libsinsp/test/filterchecks/evt.cpp index d247ee24c9..5dd72345d9 100644 --- a/userspace/libsinsp/test/filterchecks/evt.cpp +++ b/userspace/libsinsp/test/filterchecks/evt.cpp @@ -76,7 +76,7 @@ TEST_F(sinsp_with_test_input, EVT_FILTER_cmd_str) int fd = 1; - sinsp_evt* evt = add_event_advance_ts(increasing_ts(), 1, PPME_SYSCALL_BPF_2_X, 2, fd, (uint32_t)PPM_BPF_PROG_LOAD); + sinsp_evt* evt = add_event_advance_ts(increasing_ts(), 1, PPME_SYSCALL_BPF_2_X, 2, fd, (uint64_t)PPM_BPF_PROG_LOAD); ASSERT_EQ(get_field_as_string(evt, "evt.arg.cmd"), "BPF_PROG_LOAD"); } \ No newline at end of file