Skip to content

Commit 927cdd2

Browse files
authored
[libc] Fix typo in uint128 type for PPC printf handling (#138157)
1 parent e5f09aa commit 927cdd2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libc/src/stdio/printf_core/core_structs.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ struct FormatSection {
5858
// Needs to be large enough to hold a long double. Special case handling for
5959
// the PowerPC double double type because it has no FPBits interface.
6060
#ifdef LIBC_TYPES_LONG_DOUBLE_IS_DOUBLE_DOUBLE
61-
Uint128 conv_val_raw;
61+
UInt128 conv_val_raw;
6262
#else
6363
fputil::FPBits<long double>::StorageType conv_val_raw;
6464
#endif // LIBC_TYPES_LONG_DOUBLE_IS_DOUBLE_DOUBLE

0 commit comments

Comments
 (0)