From bc68be586953a9de36d990ac7c0c42e7adc90b65 Mon Sep 17 00:00:00 2001 From: Amit Schendel Date: Tue, 4 Jun 2024 08:19:08 +0000 Subject: [PATCH] Fixing typo Signed-off-by: Amit Schendel --- pkg/ebpf/gadgets/hardlink/types/types.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/ebpf/gadgets/hardlink/types/types.go b/pkg/ebpf/gadgets/hardlink/types/types.go index 144a99d7..2ddb2959 100644 --- a/pkg/ebpf/gadgets/hardlink/types/types.go +++ b/pkg/ebpf/gadgets/hardlink/types/types.go @@ -20,9 +20,9 @@ type Event struct { } func GetColumns() *columns.Columns[Event] { - symlinkColumns := columns.MustCreateColumns[Event]() + hardlinkColumns := columns.MustCreateColumns[Event]() - return symlinkColumns + return hardlinkColumns } func Base(ev eventtypes.Event) *Event {