X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=net.c;h=e897645167d86a45f454d4ef213fc198d7f8ecd1;hp=59b8616a56be2cd0dec066a5c431d3fbea9cab43;hb=c9f109a9e7f2d6116b7906a852afc339c858c275;hpb=2ed89c59f0efcd0a2763f47c7d3455663241e623 diff --git a/net.c b/net.c index 59b8616a..e8976451 100644 --- a/net.c +++ b/net.c @@ -20,7 +20,6 @@ #include "para.h" #include "net.h" -#include "gcc-compat.h" #include #include "error.h" #include "string.h" @@ -74,7 +73,7 @@ static int sendall(int fd, const char *buf, size_t *len) total += n; bytesleft -= n; if (total < *len) - PARA_DEBUG_LOG("short write (%d byte(s) left)", + PARA_DEBUG_LOG("short write (%zd byte(s) left)", *len - total); } *len = total; /* return number actually sent here */ @@ -254,7 +253,7 @@ int para_connect(int fd, struct sockaddr_in *their_addr) * * \sa accept(2). */ -int para_accept(int fd, void *addr, size_t size) +int para_accept(int fd, void *addr, socklen_t size) { int new_fd;