Fix copy/paste error.

From-SVN: r83986
This commit is contained in:
Paul Brook 2004-07-01 15:23:55 +00:00
parent f65d320115
commit ce940947fb
1 changed files with 2 additions and 2 deletions

View File

@ -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