diff options
Diffstat (limited to 'src/unistd/pipe.c')
| -rw-r--r-- | src/unistd/pipe.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/unistd/pipe.c b/src/unistd/pipe.c index b682f872..26e97dea 100644 --- a/src/unistd/pipe.c +++ b/src/unistd/pipe.c @@ -7,7 +7,7 @@ int pipe(int fildes[2]) { ASSERT_NONNULL(fildes); - SYSCALL("pipe", int, -1, fildes, 0, 0, 0, 0, 0); + SYSCALL(pipe, int, -1, fildes, 0, 0, 0, 0, 0); } /* POSIX(1) |
