summaryrefslogtreecommitdiff
path: root/test/Unit/modti3_test.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/Unit/modti3_test.c')
-rw-r--r--test/Unit/modti3_test.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Unit/modti3_test.c b/test/Unit/modti3_test.c
index 523d84a7..3cbccbe3 100644
--- a/test/Unit/modti3_test.c
+++ b/test/Unit/modti3_test.c
@@ -35,8 +35,8 @@ int test__modti3(ti_int a, ti_int b, ti_int expected)
expectedt.all = expected;
printf("error in __modti3: 0x%.16llX%.16llX %% 0x%.16llX%.16llX = "
"0x%.16llX%.16llX, expected 0x%.16llX%.16llX\n",
- at.high, at.low, bt.high, bt.low, xt.high, xt.low,
- expectedt.high, expectedt.low);
+ at.s.high, at.s.low, bt.s.high, bt.s.low, xt.s.high, xt.s.low,
+ expectedt.s.high, expectedt.s.low);
}
return x != expected;
}