From: Andre Noll Date: Sat, 19 Jan 2008 18:28:52 +0000 (+0100) Subject: dccp_send.c: Reformat comment. X-Git-Tag: v0.3.1~71 X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=commitdiff_plain;h=789a468ad8af323c31fb902f4b01ca7ddbded8d1 dccp_send.c: Reformat comment. --- diff --git a/dccp_send.c b/dccp_send.c index c9a03b94..a4a9371a 100644 --- a/dccp_send.c +++ b/dccp_send.c @@ -138,10 +138,10 @@ static int dccp_write(int fd, const char *buf, size_t len) while (written < len) { ret = write(fd, buf + written, PARA_MIN(1024, len - written)); /* - * Error handling: CCID3 has a sending wait queue which fills up and is - * emptied asynchronously. The EAGAIN case means that there is currently - * no space in the wait queue, but this can change at any moment and is - * thus not an error condition. + * Error handling: CCID3 has a sending wait queue which fills + * up and is emptied asynchronously. The EAGAIN case means that + * there is currently no space in the wait queue, but this can + * change at any moment and is thus not an error condition. */ if (ret < 0 && errno == EAGAIN) return written;