aboutsummaryrefslogtreecommitdiff
path: root/util.c
diff options
context:
space:
mode:
Diffstat (limited to 'util.c')
-rw-r--r--util.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/util.c b/util.c
index 97d705a..ceb2767 100644
--- a/util.c
+++ b/util.c
@@ -1,7 +1,7 @@
#include "util.h"
#include "debug.h"
-ssize_t sendall(int sockfd, void *buf, size_t len) {
+ssize_t sendall(int sockfd, char *buf, size_t len) {
ssize_t total_sent = 0;
ssize_t sent;
do {