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:
Fredrik Roubert 2023-08-18 15:35:31 +02:00 committed by Fredrik Roubert
parent a7a2fdbcf2
commit 1fc560c07f

View file

@ -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();
}