From 939766fb42491bceeb02ef4f8c4a13cc8d38d335 Mon Sep 17 00:00:00 2001 From: Joshua Humphries Date: Thu, 14 May 2020 19:38:08 -0400 Subject: [PATCH] Go tip does not like using string(i) where i untyped int (#159) --- format.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/format.go b/format.go index a3dc444..73162b7 100644 --- a/format.go +++ b/format.go @@ -69,7 +69,7 @@ func (f *jsonRequestParser) NumRequests() int { } const ( - textSeparatorChar = 0x1e + textSeparatorChar = '\x1e' ) type textRequestParser struct {