summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lib/hex.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/hex.go b/lib/hex.go
index e5540ce..9ec762c 100644
--- a/lib/hex.go
+++ b/lib/hex.go
@@ -90,7 +90,7 @@ func BytesToHexStr(bs []byte) string {
hs := ""
for i := 0; i < len(bs); i++ {
- hs += " " + ByteToHexStr(bs[i])
+ hs += ByteToHexStr(bs[i])
}
return hs
}