From c5ddb77b6efe7063cad3ae78040aad33790adb0a Mon Sep 17 00:00:00 2001 From: Tony Kelman Date: Mon, 25 Aug 2014 11:15:17 -0700 Subject: [PATCH] fix 32 bit test error --- test/jld.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/jld.jl b/test/jld.jl index 811f8a439..bee429f1a 100644 --- a/test/jld.jl +++ b/test/jld.jl @@ -68,7 +68,7 @@ rng = 1:5 objwithpointer = big(10)^10000 # Custom BitsType (#99) bitstype 64 MyBT -bt = reinterpret(MyBT, 55) +bt = reinterpret(MyBT, int64(55)) # Symbol arrays (#100) sa_asc = [:a, :b] sa_utf8 = [:α, :β]