[dev.garbage] runtime: Fix constant overflow on 32 bit machines

LGTM=rsc
R=golang-codereviews
CC=golang-codereviews, rsc
https://golang.org/cl/180040043
This commit is contained in:
Rick Hudson 2014-11-20 14:24:01 -05:00
parent 8cfb084534
commit cc73a44f67
1 changed files with 1 additions and 1 deletions

View File

@ -1335,7 +1335,7 @@ func mSpan_Sweep(s *mspan, preserve bool) bool {
end.ptr().next = gclinkptr(p) end.ptr().next = gclinkptr(p)
} }
end = gclinkptr(p) end = gclinkptr(p)
end.ptr().next = gclinkptr(0xbaddadae5) end.ptr().next = gclinkptr(0x0bade5)
nfree++ nfree++
} }
} }