* socket.c (scm_recvfrom): Added missing semicolon.
authorMikael Djurfeldt <djurfeldt@nada.kth.se>
Tue, 7 Jan 1997 13:08:17 +0000 (13:08 +0000)
committerMikael Djurfeldt <djurfeldt@nada.kth.se>
Tue, 7 Jan 1997 13:08:17 +0000 (13:08 +0000)
libguile/ChangeLog
libguile/socket.c

index d55feae..d1fb2d7 100644 (file)
@@ -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>
 
        * socket.c (scm_recvfrom): allow buff_or_size to be a list containing
index 1506d0a..fcdddb1 100644 (file)
@@ -690,7 +690,7 @@ scm_recvfrom (sock, buff_or_size, flags)
          if (start > end)
            scm_out_of_range (s_recvfrom, s_start);
          c_buf = SCM_CHARS (tok_buf) + start;
-         size = end - start
+         size = end - start;
        }
       else {
        SCM_ASSERT (SCM_STRINGP (buff_or_size), buff_or_size, SCM_ARG2,