Fix usage on 32bit machines

This commit is contained in:
Evan Phoenix
2014-11-05 09:24:08 -08:00
parent 71e7762db5
commit 709382e9c1
2 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -203,7 +203,7 @@ loop: // labeled loop for easy breaking
func (p *queryParser) parseSliceExpr() queryParserStateFn {
// init slice to grab all elements
start, end, step := 0, math.MaxInt64, 1
start, end, step := 0, math.MaxInt32, 1
// parse optional start
tok := p.getToken()