From 38d53b283768fc6d044f1a1de5cb9f09f4f0b5ac Mon Sep 17 00:00:00 2001 From: Shulhan Date: Fri, 17 Aug 2018 22:14:58 +0700 Subject: Fix warnings from linter --- lib/bytes/bytes.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/bytes/bytes.go') 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) -- cgit v1.3