From 37b4c2e9dc95a56616648f5070e139c4d12c1a54 Mon Sep 17 00:00:00 2001 From: Alex Garcia Date: Fri, 28 Jun 2024 16:06:04 -0700 Subject: [PATCH] is it q?? trying to fix windows i64 stuff --- tests/test-loadable.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test-loadable.py b/tests/test-loadable.py index c0607c5..f7a0727 100644 --- a/tests/test-loadable.py +++ b/tests/test-loadable.py @@ -42,7 +42,7 @@ def _f32(list): def _i64(list): - return struct.pack("%sl" % len(list), *list) + return struct.pack("%sq" % len(list), *list) def _int8(list):