mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-07 06:25:30 +00:00
ICU-21174 Debug msg nitpick: s/MaybeStacArray/MaybeStackArray/
This commit is contained in:
parent
66d8df5338
commit
4276d83e8a
1 changed files with 1 additions and 1 deletions
|
@ -438,7 +438,7 @@ template<typename T, int32_t stackCapacity>
|
|||
inline T *MaybeStackArray<T, stackCapacity>::resize(int32_t newCapacity, int32_t length) {
|
||||
if(newCapacity>0) {
|
||||
#if U_DEBUG && defined(UPRV_MALLOC_COUNT)
|
||||
::fprintf(::stderr,"MaybeStacArray (resize) alloc %d * %lu\n", newCapacity,sizeof(T));
|
||||
::fprintf(::stderr, "MaybeStackArray (resize) alloc %d * %lu\n", newCapacity, sizeof(T));
|
||||
#endif
|
||||
T *p=(T *)uprv_malloc(newCapacity*sizeof(T));
|
||||
if(p!=NULL) {
|
||||
|
|
Loading…
Add table
Reference in a new issue