mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-05-20 11:40:18 +02:00
* socket.c (scm_recvfrom): Added missing semicolon.
This commit is contained in:
parent
251ca7ab83
commit
239294dafd
2 changed files with 5 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
Tue Jan 7 15:04:06 1997 Mikael Djurfeldt <mdj@kenneth>
|
||||||
|
|
||||||
|
* socket.c (scm_recvfrom): Added missing semicolon.
|
||||||
|
|
||||||
Mon Jan 6 20:39:08 1997 Gary Houston <ghouston@actrix.gen.nz>
|
Mon Jan 6 20:39:08 1997 Gary Houston <ghouston@actrix.gen.nz>
|
||||||
|
|
||||||
* socket.c (scm_recvfrom): allow buff_or_size to be a list containing
|
* socket.c (scm_recvfrom): allow buff_or_size to be a list containing
|
||||||
|
|
|
@ -690,7 +690,7 @@ scm_recvfrom (sock, buff_or_size, flags)
|
||||||
if (start > end)
|
if (start > end)
|
||||||
scm_out_of_range (s_recvfrom, s_start);
|
scm_out_of_range (s_recvfrom, s_start);
|
||||||
c_buf = SCM_CHARS (tok_buf) + start;
|
c_buf = SCM_CHARS (tok_buf) + start;
|
||||||
size = end - start
|
size = end - start;
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
SCM_ASSERT (SCM_STRINGP (buff_or_size), buff_or_size, SCM_ARG2,
|
SCM_ASSERT (SCM_STRINGP (buff_or_size), buff_or_size, SCM_ARG2,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue