mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-05 21:45:37 +00:00
ICU-22465 Change .s to .data() for replacing TinyString with CharString.
This was forgotten by ICU-7496 which replaced the local TinyString data type with the shared CharString data type, but as it's in code heavily nested in #ifdef's it hasn't been noticed until now.
This commit is contained in:
parent
a7a2fdbcf2
commit
1fc560c07f
1 changed files with 1 additions and 1 deletions
|
@ -1196,7 +1196,7 @@ doOpenChoice(const char *path, const char *type, const char *name,
|
|||
*p = U_FILE_SEP_CHAR;
|
||||
}
|
||||
#if defined (UDATA_DEBUG)
|
||||
fprintf(stderr, "Changed path from [%s] to [%s]\n", path, altSepPath.s);
|
||||
fprintf(stderr, "Changed path from [%s] to [%s]\n", path, altSepPath.data());
|
||||
#endif
|
||||
path = altSepPath.data();
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue