Fixed harmless warning in M33 port.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@16409 27425a3e-05d8-49a3-a47f-9c15f0e5edd8
This commit is contained in:
parent
d340c452ee
commit
c23856dec5
|
@ -511,7 +511,7 @@ struct port_context {
|
|||
#else
|
||||
#define port_switch(ntp, otp) do { \
|
||||
struct port_intctx *r13 = (struct port_intctx *)__get_PSP(); \
|
||||
if ((stkalign_t *)(r13 - 1) < (otp)->wabase) { \
|
||||
if ((stkalign_t *)(void *)(r13 - 1) < (otp)->wabase) { \
|
||||
chSysHalt("stack overflow"); \
|
||||
} \
|
||||
__port_switch(ntp, otp); \
|
||||
|
|
Loading…
Reference in New Issue