From: Fengguang Wu <fengguang...@intel.com>

kernel/bpf/stackmap.c:177:2-3: Unneeded semicolon


 Remove unneeded semicolon.

Generated by: scripts/coccinelle/misc/semicolon.cocci

Fixes: fd5c09555695 ("bpf: extend stackmap to save binary_build_id+offset 
instead of address")
CC: Song Liu <songliubrav...@fb.com>
Signed-off-by: Fengguang Wu <fengguang...@intel.com>
---

 stackmap.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

--- a/kernel/bpf/stackmap.c
+++ b/kernel/bpf/stackmap.c
@@ -174,7 +174,7 @@ static inline int stack_map_parse_build_
                if (new_offs <= note_offs)  /* overflow */
                        break;
                note_offs = new_offs;
-       };
+       }
        return -EINVAL;
 }
 

Reply via email to