diff options
| author | Shulhan <ms@kilabit.info> | 2018-08-17 22:14:58 +0700 |
|---|---|---|
| committer | Shulhan <ms@kilabit.info> | 2018-08-17 22:14:58 +0700 |
| commit | 38d53b283768fc6d044f1a1de5cb9f09f4f0b5ac (patch) | |
| tree | 2e296f16cf7df113a0376bfb1e6d12792040d98b /lib/bytes/bytes.go | |
| parent | 39e5627350b94050af8676501ad76d07ac19f6e3 (diff) | |
| download | pakakeh.go-38d53b283768fc6d044f1a1de5cb9f09f4f0b5ac.tar.xz | |
Fix warnings from linter
Diffstat (limited to 'lib/bytes/bytes.go')
| -rw-r--r-- | lib/bytes/bytes.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bytes/bytes.go b/lib/bytes/bytes.go index c0e2e841..23257ee9 100644 --- a/lib/bytes/bytes.go +++ b/lib/bytes/bytes.go @@ -14,7 +14,7 @@ import ( // length. // func PrintHex(title string, data []byte, col int) { - fmt.Printf(title) + fmt.Print(title) for x := 0; x < len(data); x++ { if x%col == 0 { fmt.Printf("\n%4d -", x) |
