summaryrefslogtreecommitdiff
path: root/src/sys/stat/chmod.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/sys/stat/chmod.c')
-rw-r--r--src/sys/stat/chmod.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sys/stat/chmod.c b/src/sys/stat/chmod.c
index 6b0d8c1a..975cf01a 100644
--- a/src/sys/stat/chmod.c
+++ b/src/sys/stat/chmod.c
@@ -4,7 +4,7 @@
int chmod(const char *path, mode_t mode)
{
- SYSCALL("chmod", int, -1, path, mode, 0, 0, 0, 0);
+ SYSCALL(chmod, int, -1, path, mode, 0, 0, 0, 0);
}
/*
POSIX(1)