diff options
author | Roland McGrath <roland@gnu.org> | 2005-03-06 23:34:29 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2005-03-06 23:34:29 +0000 |
commit | af1d8453982963a896530b601d0b3cf6e6a83f5d (patch) | |
tree | 0059dbebb3b0613ecc35df860c9a26642e7dda58 /socket | |
parent | 30dd7154524588001b24fa12e78d05fd48fbfbdb (diff) | |
download | glibc-af1d8453982963a896530b601d0b3cf6e6a83f5d.tar.gz glibc-af1d8453982963a896530b601d0b3cf6e6a83f5d.tar.xz glibc-af1d8453982963a896530b601d0b3cf6e6a83f5d.zip |
Typo in last change
Diffstat (limited to 'socket')
-rw-r--r-- | socket/bits/socket2.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/socket/bits/socket2.h b/socket/bits/socket2.h index aec41b3a96..c7ecac423f 100644 --- a/socket/bits/socket2.h +++ b/socket/bits/socket2.h @@ -34,4 +34,4 @@ extern void __chk_fail (void) __attribute__((noreturn)); ({ size_t __n_val = (n); \ if (__bos0 (buf) != (size_t) -1 && __bos0 (buf) < __n_val) \ __chk_fail (); \ - recvfrom ((fd, (buf), __n_val, (flags), (addr), (addr_len)); })) + recvfrom ((fd), (buf), __n_val, (flags), (addr), (addr_len)); })) |