]> granicus.if.org Git - icu/commitdiff
ICU-21174 Debug msg nitpick: s/MaybeStacArray/MaybeStackArray/
authorHugo van der Merwe <17109322+hugovdm@users.noreply.github.com>
Fri, 7 Aug 2020 15:56:08 +0000 (17:56 +0200)
committerHugo van der Merwe <17109322+hugovdm@users.noreply.github.com>
Fri, 7 Aug 2020 17:11:00 +0000 (19:11 +0200)
icu4c/source/common/cmemory.h

index 2d37b91a2d1f40e0fe7102ded488b68b2ccfb272..bdf6ba2e5ca1e2e50276c7d92df5fba650949ce8 100644 (file)
@@ -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) {