From 775c95b8b3518dfee27609458c5d47b06e07e06e Mon Sep 17 00:00:00 2001 From: Anton Kochkov Date: Wed, 2 Aug 2023 18:03:15 +0800 Subject: [PATCH] Fix a typo in ut128 type (#3714) --- librz/include/rz_types_base.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/librz/include/rz_types_base.h b/librz/include/rz_types_base.h index 94a038cf31..7cd3bc70a5 100644 --- a/librz/include/rz_types_base.h +++ b/librz/include/rz_types_base.h @@ -37,7 +37,7 @@ typedef struct _ut96 { } ut96; typedef struct _ut128 { ut64 Low; - st64 High; + ut64 High; } ut128; typedef struct _ut256 { ut128 Low;