fix u128 make

This commit is contained in:
Nikita Smith
2025-08-21 15:21:18 -07:00
committed by Ryan Fleury
parent fc4e269211
commit 0dac1a91db
+1 -1
View File
@@ -41,7 +41,7 @@ u128_zero(void)
internal U128
u128_make(U64 v0, U64 v1)
{
U128 v = {v0, v1};
U128 v = { .u64 = { v0, v1 }};
return v;
}