diff options
author | Carl Baldwin <carl@ecbaldwin.net> | 2018-11-14 11:37:47 -0700 |
---|---|---|
committer | Carl Baldwin <carl@ecbaldwin.net> | 2018-11-14 11:37:47 -0700 |
commit | 792391358237b786c273b07ea43bc983c684993e (patch) | |
tree | 5f21a7b2f056fe1455503ab5bc10c773a1aaeae6 /cmd | |
parent | fa387c90650613bceaca6c6c90c8744405988f8c (diff) |
Add quotes to short option value
This broke vet for me. Not sure why it didn't break in CI.
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/gobgp/common.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/gobgp/common.go b/cmd/gobgp/common.go index 7f582902..709c4efb 100644 --- a/cmd/gobgp/common.go +++ b/cmd/gobgp/common.go @@ -105,7 +105,7 @@ var mrtOpts struct { } var bmpOpts struct { - StatisticsTimeout int `short:s long:"statistics-timeout" description:"Interval for Statistics Report"` + StatisticsTimeout int `short:"s" long:"statistics-timeout" description:"Interval for Statistics Report"` } func formatTimedelta(d int64) string { |