diff options
author | mjacob <mjacob@FreeBSD.org> | 2007-06-26 02:07:47 +0000 |
---|---|---|
committer | mjacob <mjacob@FreeBSD.org> | 2007-06-26 02:07:47 +0000 |
commit | 1aac323b15290a9da6bf758b44d519f223143572 (patch) | |
tree | c5c9744c0e8cbe04231472c45a86cfbbc11de1a3 /lib/libc | |
parent | 73fffc81bcaccfc20c4d1d26232d77e302919133 (diff) | |
download | FreeBSD-src-1aac323b15290a9da6bf758b44d519f223143572.zip FreeBSD-src-1aac323b15290a9da6bf758b44d519f223143572.tar.gz |
Add missing semi-colon.
Approved by: re (not really, but it's better to have things compile than not for right now. Sorry)
Diffstat (limited to 'lib/libc')
-rw-r--r-- | lib/libc/net/sctp_sys_calls.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libc/net/sctp_sys_calls.c b/lib/libc/net/sctp_sys_calls.c index 90e1fd4..d2040b1 100644 --- a/lib/libc/net/sctp_sys_calls.c +++ b/lib/libc/net/sctp_sys_calls.c @@ -214,7 +214,7 @@ sctp_connectx(int sd, const struct sockaddr *addrs, int addrcnt, if (len > (sizeof(buf) - sizeof(int))) { /* Never enough memory */ errno = E2BIG; - return (-1) + return (-1); } at = (struct sockaddr *)((caddr_t)at + at->sa_len); cnt++; |