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;