Browse Source

style: add type conversion for getcwd

greatbridf 2 years ago
parent
commit
36654c55e7
1 changed files with 1 additions and 1 deletions
  1. 1 1
      gblibc/src/unistd.c

+ 1 - 1
gblibc/src/unistd.c

@@ -40,5 +40,5 @@ int chdir(const char* path)
 
 
 char* getcwd(char* buf, size_t bufsize)
 char* getcwd(char* buf, size_t bufsize)
 {
 {
-    return syscall2(SYS_getcwd, (uint32_t)buf, bufsize);
+    return (char*)syscall2(SYS_getcwd, (uint32_t)buf, bufsize);
 }
 }