Update some comments.

This commit is contained in:
Gregory Nutt 2017-08-26 11:50:41 -06:00
parent 1fcc7ec38e
commit f43f372823
2 changed files with 4 additions and 4 deletions
arch/sim/src
net/sixlowpan

@ -2,10 +2,10 @@
* arch/sim/src/up_setjmp_arm.h
*
* Copyright (C) 2017 Gregory Nutt. All rights reserved.
* Author: Nickolay Semyonov (RPI) <snob@wolpike.com>
*
* 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

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