Browse Source

fixed LOG_E

xieyangrun 2 years ago
parent
commit
b57c0e4d16
1 changed files with 1 additions and 1 deletions
  1. 1 1
      components/lwp/lwp_syscall.c

+ 1 - 1
components/lwp/lwp_syscall.c

@@ -4059,7 +4059,7 @@ ssize_t sys_readlink(char* path, char *buf, size_t bufsz)
 
 
     if (err != 1)
     if (err != 1)
     {
     {
-        lOG_E("readlink: path not is /proc/self/fd/* , call by musl __procfdname()?");
+        LOG_E("readlink: path not is /proc/self/fd/* , call by musl __procfdname()?");
         return -EINVAL;
         return -EINVAL;
     }
     }