diff options
| author | Michal Idziorek <m.i@gmx.at> | 2014-11-23 16:43:08 +0100 |
|---|---|---|
| committer | Michal Idziorek <m.i@gmx.at> | 2014-11-23 16:43:08 +0100 |
| commit | 6b8c02a9cf4ac36e42d07c668a2be27d2bf1a733 (patch) | |
| tree | c563673e3c67e362eba6d5a7a5405f9601444a35 /userspace | |
| parent | 1d472bb0439a83191fcda5e7a778ff0f28a0b6e5 (diff) | |
fix typo
Diffstat (limited to 'userspace')
| -rw-r--r-- | userspace/sys/syscalls.c | 2 |
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); } |
