summaryrefslogtreecommitdiff
path: root/userspace/sys/syscalls.c
diff options
context:
space:
mode:
authorMichal Idziorek <m.i@gmx.at>2014-11-23 16:43:08 +0100
committerMichal Idziorek <m.i@gmx.at>2014-11-23 16:43:08 +0100
commit6b8c02a9cf4ac36e42d07c668a2be27d2bf1a733 (patch)
treec563673e3c67e362eba6d5a7a5405f9601444a35 /userspace/sys/syscalls.c
parent1d472bb0439a83191fcda5e7a778ff0f28a0b6e5 (diff)
fix typo
Diffstat (limited to 'userspace/sys/syscalls.c')
-rw-r--r--userspace/sys/syscalls.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/userspace/sys/syscalls.c b/userspace/sys/syscalls.c
index 314492f..25c48b0 100644
--- a/userspace/sys/syscalls.c
+++ b/userspace/sys/syscalls.c
@@ -116,7 +116,7 @@ int stat(const char *file, struct stat *st)
return syscall(SYSCALL_STAT,file,st,0);
}
-int ltat(const char *file, struct stat *st)
+int lstat(const char *file, struct stat *st)
{
return syscall(SYSCALL_LSTAT,file,st,0);
}