diff options
author | Luke Shumaker <lukeshu@lukeshu.com> | 2020-02-17 12:23:58 -0500 |
---|---|---|
committer | Luke Shumaker <lukeshu@lukeshu.com> | 2020-02-17 12:23:58 -0500 |
commit | 0d9e47fed2c2f39b47bdfed90a0bdab98b237885 (patch) | |
tree | 9cf30fa682b20dde0773d141eb49d02fdbc90846 | |
parent | b260a77a27e28c57493b436a0186263568217c2b (diff) |
-rw-r--r-- | rrdformat/rrdbinary/errors.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rrdformat/rrdbinary/errors.go b/rrdformat/rrdbinary/errors.go index 1e61af0..73741df 100644 --- a/rrdformat/rrdbinary/errors.go +++ b/rrdformat/rrdbinary/errors.go @@ -92,7 +92,7 @@ func typeErrorf(format string, a ...interface{}) error { type ArchError string func (e ArchError) Error() string { - return "invalid rrdbinary.Architecture: "+string(e) + return "invalid rrdbinary.Architecture: " + string(e) } func archErrorf(format string, a ...interface{}) error { |