From 88fe03639c91a915bf9f2b3264f01a4fa23c2e37 Mon Sep 17 00:00:00 2001 From: George Rhoten Date: Thu, 5 Jun 2003 23:55:52 +0000 Subject: [PATCH] ICU-2984 Use fewer magic numbers X-SVN-Rev: 12335 --- icu4c/source/i18n/ucurr.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/icu4c/source/i18n/ucurr.cpp b/icu4c/source/i18n/ucurr.cpp index e9f9b04650..940016cffe 100644 --- a/icu4c/source/i18n/ucurr.cpp +++ b/icu4c/source/i18n/ucurr.cpp @@ -137,7 +137,7 @@ static CReg* gCRegHead = 0; struct CReg : public UMemory { CReg *next; UChar iso[4]; - char id[12]; + char id[ULOC_FULLNAME_CAPACITY]; CReg(const UChar* _iso, const char* _id) : next(0)