Commit ce940947 by Paul Brook

Fix copy/paste error.

From-SVN: r83986
parent f65d3201
......@@ -55,7 +55,7 @@ void check_cookie (int i)
exit (i);
#ifdef __ARM_EABI__
size_t *sp = ((size_t *) a) - 2;
sp = ((size_t *) a) - 2;
if (*sp != sizeof (T))
exit (i);
#endif
......@@ -85,7 +85,7 @@ void check_placement_cookie (int i)
exit (i);
#ifdef __ARM_EABI__
size_t *sp = ((size_t *) a) - 2;
sp = ((size_t *) a) - 2;
if (*sp != sizeof (T))
exit (i);
#endif
......
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