This is an automated email from the ASF dual-hosted git repository.
xiaoxiang 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 616828bae4 pwd: fix syntax error
616828bae4 is described below
commit 616828bae47db442a4943aecfc7eb2451ec4abee
Author: yangyalei <[email protected]>
AuthorDate: Mon Sep 4 15:11:23 2023 +0800
pwd: fix syntax error
Signed-off-by: yangyalei <[email protected]>
---
libs/libc/pwd/lib_pwd.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libs/libc/pwd/lib_pwd.h b/libs/libc/pwd/lib_pwd.h
index 5b73a2e14b..08dde30f8f 100644
--- a/libs/libc/pwd/lib_pwd.h
+++ b/libs/libc/pwd/lib_pwd.h
@@ -80,7 +80,7 @@ int pwd_findby_name(FAR const char *uname, FAR struct passwd
*entry,
int pwd_findby_uid(uid_t uid, FAR struct passwd *entry, FAR char *buffer,
size_t buflen);
int pwd_findby_index(int index, FAR struct passwd *entry,
- FAR char *buffer, size_t buflen)
+ FAR char *buffer, size_t buflen);
#endif
#undef EXTERN