Fix format string

This commit is contained in:
Derek Parker 2014-12-02 12:42:17 -06:00
parent 93d62e450e
commit 67e2455caf

@ -101,7 +101,7 @@ func (thread *ThreadContext) AllM() ([]*M, error) {
} }
spinBytes, err := thread.readMemory(uintptr(spinningAddr), 1) spinBytes, err := thread.readMemory(uintptr(spinningAddr), 1)
if err != nil { if err != nil {
return nil, fmt.Errorf("could not read spinning %#v %d", spinningAddr, err) return nil, fmt.Errorf("could not read spinning %#v %s", spinningAddr, err)
} }
// blocked // blocked