Merge pull request #282 from google/fix-277

Fix 32bit-system integer overflow (test only)
This commit is contained in:
Wouter van Oortmerssen 2015-09-25 14:54:50 -07:00
commit a35c32e30f
1 changed files with 1 additions and 1 deletions

View File

@ -368,7 +368,7 @@ func checkFuzz(fuzzFields, fuzzObjects int, fail func(string, ...interface{})) {
for j := 0; j < fuzzFields; j++ {
f := flatbuffers.VOffsetT((flatbuffers.VtableMetadataFields + j) * flatbuffers.SizeVOffsetT)
choice := int(l.Next()) % testValuesMax
choice := l.Next() % uint32(testValuesMax)
switch choice {
case 0: