Chromium Code Reviews| Index: fusl/src/unistd/chdir.c |
| diff --git a/fusl/src/unistd/chdir.c b/fusl/src/unistd/chdir.c |
| index 5ba78b6317dc34ef50bc3278889b357afcfc978b..ba11836ed0a9a2bef6522cc68bccd8a518c446b4 100644 |
| --- a/fusl/src/unistd/chdir.c |
| +++ b/fusl/src/unistd/chdir.c |
| @@ -1,7 +1,6 @@ |
| #include <unistd.h> |
| #include "syscall.h" |
| -int chdir(const char *path) |
| -{ |
| - return syscall(SYS_chdir, path); |
| +int chdir(const char* path) { |
| + return syscall(SYS_chdir, path); |
| } |