From 4d1de362b56743c7a92c27a8d08d37c3e399d02a Mon Sep 17 00:00:00 2001 From: Christiano Haesbaert Date: Thu, 2 May 2024 20:47:49 +0200 Subject: [PATCH] Please the lint gods This is one ugly format. --- GPL/Events/EbpfEventProto.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/GPL/Events/EbpfEventProto.h b/GPL/Events/EbpfEventProto.h index ec3cc0c0..4075c499 100644 --- a/GPL/Events/EbpfEventProto.h +++ b/GPL/Events/EbpfEventProto.h @@ -61,11 +61,11 @@ enum ebpf_varlen_field_type { // Convenience macro to iterate all the variable length fields in an event #define FOR_EACH_VARLEN_FIELD(vl_fields_start, cursor) \ - cursor = (struct ebpf_varlen_field *)vl_fields_start.data; \ + cursor = (struct ebpf_varlen_field *)vl_fields_start.data; \ for (uint32_t __i = 0; __i < vl_fields_start.nfields; \ - cursor = (struct ebpf_varlen_field *)((char *)cursor + cursor->size + \ - sizeof(struct ebpf_varlen_field)), \ - __i++) + cursor = (struct ebpf_varlen_field *)((char *)cursor + cursor->size + \ + sizeof(struct ebpf_varlen_field)), \ + __i++) struct ebpf_varlen_fields_start { uint32_t nfields;