From 4243575dabd699677c3c90c05c240d98e14236db Mon Sep 17 00:00:00 2001 From: Bjoern Berg Date: Tue, 8 Sep 2026 13:30:39 +0200 Subject: [PATCH] removed unnecessary ) from NIC plugin output --- cmd/nic.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/nic.go b/cmd/nic.go index f1d37ef..82d2408 100644 --- a/cmd/nic.go +++ b/cmd/nic.go @@ -75,5 +75,5 @@ func queryNic() { } dbConnection.Close() - check.ExitWithPerfdata(statusCode, pl, fmt.Sprintf("Number of NICs: %d)", hardwareNumNICs)) + check.ExitWithPerfdata(statusCode, pl, fmt.Sprintf("Number of NICs: %d", hardwareNumNICs)) }