summaryrefslogtreecommitdiff
path: root/userland/libc/sys/socket/sendto.c
diff options
context:
space:
mode:
Diffstat (limited to 'userland/libc/sys/socket/sendto.c')
-rw-r--r--userland/libc/sys/socket/sendto.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/userland/libc/sys/socket/sendto.c b/userland/libc/sys/socket/sendto.c
index 73437ab..be35ec0 100644
--- a/userland/libc/sys/socket/sendto.c
+++ b/userland/libc/sys/socket/sendto.c
@@ -7,7 +7,7 @@ struct two_args {
};
size_t sendto(int socket, const void *message, size_t length, int flags,
- const struct sockaddr *dest_addr, socklen_t dest_len) {
+ const struct sockaddr *dest_addr, socklen_t dest_len) {
struct two_args extra = {
.a = dest_addr,
.b = dest_len,