summaryrefslogtreecommitdiff
path: root/src/unistd/chdir.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/unistd/chdir.c')
-rw-r--r--src/unistd/chdir.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/unistd/chdir.c b/src/unistd/chdir.c
index 203be533..e4061feb 100644
--- a/src/unistd/chdir.c
+++ b/src/unistd/chdir.c
@@ -5,7 +5,7 @@
int chdir(const char *path)
{
- SYSCALL("chdir", int, -1, path, 0, 0, 0, 0, 0);
+ SYSCALL(chdir, int, -1, path, 0, 0, 0, 0, 0);
}
/*
POSIX(1)