Commit deaf89b8 authored by Ian Lance Taylor's avatar Ian Lance Taylor

runtime: remove unnecessary cast in alg.goc

LGTM=dave
R=golang-codereviews, dave
CC=golang-codereviews
https://golang.org/cl/68650045
parent e6c66a90
......@@ -511,7 +511,7 @@ runtime·equal(Type *t, ...)
x = (byte*)ROUND((uintptr)(&t+1), t->align);
y = x + t->size;
ret = (bool*)ROUND((uintptr)(y+t->size), Structrnd);
t->alg->equal((bool*)ret, t->size, x, y);
t->alg->equal(ret, t->size, x, y);
}
// Testing adapter for memclr
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment