From 20522432dbd226dde8f638e258e3ddaf48f2955a Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Mon, 30 Nov 2020 10:42:03 +0100 Subject: all: fix format of fmt.Printf/Fprintf calls --- pkg/csource/options.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'pkg/csource') diff --git a/pkg/csource/options.go b/pkg/csource/options.go index e72796b75..ebea29fc2 100644 --- a/pkg/csource/options.go +++ b/pkg/csource/options.go @@ -295,7 +295,7 @@ func ParseFeaturesFlags(enable, disable string, defaultValue bool) (Features, er } func PrintAvailableFeaturesFlags() { - fmt.Printf("Available features for -enable and -disable:\n") + fmt.Printf("available features for -enable and -disable:\n") features := defaultFeatures(false) var names []string for name := range features { -- cgit mrf-deployment