Commit ee49cccc authored by Tom Rini's avatar Tom Rini

PPC32: Fix a warning in the 'mktree' boot util.

parent 2d23bebe
......@@ -86,7 +86,7 @@ int main(int argc, char *argv[])
}
cksum = 0;
cp = (uint *)&bt;
cp = (void *)&bt;
for (i=0; i<sizeof(bt)/sizeof(uint); i++)
cksum += *cp++;
......
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