This is an automated email from the ASF dual-hosted git repository.

xiaoxiang pushed a commit to branch releases/12.7
in repository https://gitbox.apache.org/repos/asf/nuttx.git

commit 2f512f78bfb06fd6d3e73a52650dd8e89c713ee8
Author: chenxiaoyi <[email protected]>
AuthorDate: Wed Jul 10 12:07:16 2024 +0800

    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 <[email protected]>
---
 libs/libc/misc/lib_bitmap.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/libs/libc/misc/lib_bitmap.c b/libs/libc/misc/lib_bitmap.c
index c0f0d6a3f3..e9afa8cfd3 100644
--- a/libs/libc/misc/lib_bitmap.c
+++ b/libs/libc/misc/lib_bitmap.c
@@ -45,7 +45,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,
@@ -127,7 +127,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,

Reply via email to