mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-07 06:25:30 +00:00
ICU-22721 Correct format specifier for type int32_t (-Wformat).
This commit is contained in:
parent
e6674c7360
commit
8f6ba2a7a5
1 changed files with 1 additions and 1 deletions
|
@ -632,7 +632,7 @@ public:
|
|||
case Formattable::kInt64:
|
||||
{
|
||||
char buf[256];
|
||||
sprintf(buf, "%ldL", f.getLong());
|
||||
sprintf(buf, "%dL", f.getLong());
|
||||
return UnicodeString(buf, "");
|
||||
}
|
||||
case Formattable::kString:
|
||||
|
|
Loading…
Add table
Reference in a new issue