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

archer pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/nuttx.git


The following commit(s) were added to refs/heads/master by this push:
     new 064b94bb6d libc/libc.csv: Fix signature of getpass
064b94bb6d is described below

commit 064b94bb6d73d6ab24d1aa93c482a358b868344b
Author: Huang Qi <[email protected]>
AuthorDate: Wed Nov 13 10:55:07 2024 +0800

    libc/libc.csv: Fix signature of getpass
    
    Add missing parameter type to getpass signature,
    and add missing const qualifier to the return value.
    
    Signed-off-by: Huang Qi <[email protected]>
---
 libs/libc/libc.csv | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libs/libc/libc.csv b/libs/libc/libc.csv
index 49865e8ff1..699726c13d 100644
--- a/libs/libc/libc.csv
+++ b/libs/libc/libc.csv
@@ -109,7 +109,7 @@
 "getoptindp","unistd.h","","FAR int *"
 "getoptoptp","unistd.h","","FAR int *"
 "getpriority","sys/resource.h","","int","int","id_t"
-"getpass","unistd.h","","FAR const char *"
+"getpass","unistd.h","","FAR const char *","FAR char *"
 "getpwnam_r","pwd.h","","int","FAR const char *","FAR struct passwd *","FAR 
char *","size_t","FAR struct passwd **"
 "getpwuid_r","pwd.h","","int","uid_t","FAR struct passwd *","FAR char 
*","size_t","FAR struct passwd **"
 "getrandom","sys/random.h","!defined(CONFIG_BUILD_KERNEL)","ssize_t","FAR void 
*","size_t","unsigned int"

Reply via email to