mirror of
https://github.com/apache/nuttx.git
synced 2025-01-13 08:38:38 +08:00
libc: fix build warning
nuttx\libs\libc\misc\lib_bitmap.c(1,1): warning C4819: The file contains a character that cannot be represented in the current code page (936). Signed-off-by: chenxiaoyi <chenxiaoyi@xiaomi.com>
This commit is contained in:
parent
f6fc4cdded
commit
c8e0f5c890
1 changed files with 2 additions and 2 deletions
|
@ -47,7 +47,7 @@
|
|||
* offset - Offset of start to finding
|
||||
*
|
||||
* Returned Value:
|
||||
* Return index position(0 ~ size-1)if finded, otherwise return size
|
||||
* Return index position (0 ~ size-1) if finded, otherwise return size
|
||||
****************************************************************************/
|
||||
|
||||
unsigned long find_next_bit(FAR const unsigned long *addr,
|
||||
|
@ -129,7 +129,7 @@ found_middle:
|
|||
* offset - Offset of start to finding
|
||||
*
|
||||
* Returned Value:
|
||||
* Return index position(0 ~ size-1)if Finded, otherwise return size
|
||||
* Return index position (0 ~ size-1) if Finded, otherwise return size
|
||||
****************************************************************************/
|
||||
|
||||
unsigned long find_next_zero_bit(FAR const unsigned long *addr,
|
||||
|
|
Loading…
Reference in a new issue