From 789a468ad8af323c31fb902f4b01ca7ddbded8d1 Mon Sep 17 00:00:00 2001 From: Andre Noll Date: Sat, 19 Jan 2008 19:28:52 +0100 Subject: [PATCH] dccp_send.c: Reformat comment. --- dccp_send.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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; -- 2.39.5