Ommitted a file in previous commit

This commit is contained in:
Nickolay Semyonov (RPI) 2017-08-26 11:44:48 -06:00 committed by Gregory Nutt
parent 48c27f8ffc
commit 1fcc7ec38e
2 changed files with 8 additions and 2 deletions

View File

@ -47,10 +47,16 @@ ifeq ($(CONFIG_SIM_M32),y)
else
ASRCS += up_setjmp64.S
endif
else
endif
ifeq ($(CONFIG_HOST_X86_64),y)
ASRCS += up_setjmp32.S
endif
ifeq ($(CONFIG_HOST_ARM),y)
ASRCS += up_setjmp_arm.S
endif
AOBJS = $(ASRCS:.S=$(OBJEXT))
CSRCS = up_initialize.c up_idle.c up_interruptcontext.c up_initialstate.c

View File

@ -108,7 +108,7 @@ static bool sixlowpan_compare_fragsrc(FAR struct sixlowpan_reassbuf_s *reass,
if (fragsrc->nv_addrlen == reass->rb_fragsrc.nv_addrlen)
{
/* The are the same sizer, return the address comparisson */
/* The are the same size, return the address comparisson */
return (memcmp(fragsrc->nv_addr, reass->rb_fragsrc.nv_addr,
fragsrc->nv_addrlen) == 0);