From 027ac9a2c3d9d8d3efdfe0ecb16ba3333618db15 Mon Sep 17 00:00:00 2001 From: Chris Hanson Date: Tue, 22 May 2018 22:03:15 -0700 Subject: [PATCH] Use bytevector instead of string when detecting endianness. --- src/runtime/global.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/runtime/global.scm b/src/runtime/global.scm index 79077ebaa..c6b7e223b 100644 --- a/src/runtime/global.scm +++ b/src/runtime/global.scm @@ -83,7 +83,7 @@ USA. (case (object-datum (vector-ref (object-new-type (ucode-type vector) - "\000\001\002\000\000\003\004\000") + (bytevector 0 1 2 0 0 3 4 0)) 1)) ((#x00010200 #x0001020000030400) #t) ((#x00020100 #x0004030000020100) #f) -- 2.25.1