aboutsummaryrefslogtreecommitdiff
path: root/libgo/go/json/stream.go
diff options
context:
space:
mode:
Diffstat (limited to 'libgo/go/json/stream.go')
-rw-r--r--libgo/go/json/stream.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/libgo/go/json/stream.go b/libgo/go/json/stream.go
index f143b3f..98cb793 100644
--- a/libgo/go/json/stream.go
+++ b/libgo/go/json/stream.go
@@ -115,7 +115,7 @@ Input:
func nonSpace(b []byte) bool {
for _, c := range b {
- if !isSpace(int(c)) {
+ if !isSpace(rune(c)) {
return true
}
}