summaryrefslogtreecommitdiff
path: root/src/unistd/lseek.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/unistd/lseek.c')
-rw-r--r--src/unistd/lseek.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/unistd/lseek.c b/src/unistd/lseek.c
index 52665cd6..a277efbd 100644
--- a/src/unistd/lseek.c
+++ b/src/unistd/lseek.c
@@ -5,7 +5,7 @@
off_t lseek(int fildes, off_t offset, int whence)
{
- SYSCALL("lseek", off_t, -1, fildes, offset, whence, 0, 0, 0);
+ SYSCALL(lseek, off_t, -1, fildes, offset, whence, 0, 0, 0);
}
/*
POSIX(1)