From: Chris Hanson Date: Tue, 21 Feb 2017 06:26:51 +0000 (-0800) Subject: Convert a string-allocate reference to make-bytevector. X-Git-Tag: mit-scheme-pucked-9.2.12~220^2~43 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=663d6c315477da5e8d6656113dfe1226035cc545;p=mit-scheme.git Convert a string-allocate reference to make-bytevector. --- diff --git a/src/runtime/socket.scm b/src/runtime/socket.scm index 1ed0f5a07..afffca8e2 100644 --- a/src/runtime/socket.scm +++ b/src/runtime/socket.scm @@ -201,7 +201,7 @@ USA. (canonical-host-name (get-host-name))) (define (allocate-host-address) - (string-allocate ((ucode-primitive host-address-length 0)))) + (make-bytevector ((ucode-primitive host-address-length 0)))) (define host-address-any (ucode-primitive host-address-any 0))