diff options
| author | Dmitry Vyukov <dvyukov@google.com> | 2020-11-30 10:42:03 +0100 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2020-11-30 11:49:18 +0100 |
| commit | 20522432dbd226dde8f638e258e3ddaf48f2955a (patch) | |
| tree | 8bc5c33aea24a4ee4d0d4b3d5cbbd24d45980938 /pkg/csource | |
| parent | a0092f9dfdd33924abe5cf5565e4ec4748217c7b (diff) | |
all: fix format of fmt.Printf/Fprintf calls
Diffstat (limited to 'pkg/csource')
| -rw-r--r-- | pkg/csource/options.go | 2 |
1 files changed, 1 insertions, 1 deletions
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 { |
