diff --git a/arch/sim/src/up_setjmp_arm.S b/arch/sim/src/up_setjmp_arm.S index 2332fdfeb59..444458c25f4 100644 --- a/arch/sim/src/up_setjmp_arm.S +++ b/arch/sim/src/up_setjmp_arm.S @@ -2,10 +2,10 @@ * arch/sim/src/up_setjmp_arm.h * * Copyright (C) 2017 Gregory Nutt. All rights reserved. + * Author: Nickolay Semyonov (RPI) * - * Extracted from the MUSL C-library by Bitbucket user nbkolchin. The MUSL - * C library has a compatible MIT license and is released here under the - * NuttX 3-clause BSD license: + * Extracted from the MUSL C-library. The MUSL C library has a compatible + * MIT license and is released here under the NuttX 3-clause BSD license: * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/net/sixlowpan/sixlowpan_reassbuf.c b/net/sixlowpan/sixlowpan_reassbuf.c index 514da1f1109..4760488dd64 100644 --- a/net/sixlowpan/sixlowpan_reassbuf.c +++ b/net/sixlowpan/sixlowpan_reassbuf.c @@ -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 size, return the address comparisson */ + /* The are the same size, return the address comparison */ return (memcmp(fragsrc->nv_addr, reass->rb_fragsrc.nv_addr, fragsrc->nv_addrlen) == 0);