From c8e89dc22a41941b92eff5ce08a6ea3766478821 Mon Sep 17 00:00:00 2001 From: George Rhoten Date: Mon, 2 Jun 2003 23:19:03 +0000 Subject: [PATCH] ICU-2699 Fix some compiler warnings X-SVN-Rev: 12233 --- icu4c/source/common/punycode.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/icu4c/source/common/punycode.c b/icu4c/source/common/punycode.c index 01e7cf0214e..eba6f25a165 100644 --- a/icu4c/source/common/punycode.c +++ b/icu4c/source/common/punycode.c @@ -68,7 +68,7 @@ Disclaimer and license #define _HYPHEN 0X2d #define DELIMITER _HYPHEN -#define _ZERO 0X30 +#define _ZERO_ 0X30 #define _NINE 0x39 #define _SMALL_A 0X61 @@ -97,7 +97,7 @@ digitToBasic(int32_t digit, UBool uppercase) { return (char)(_SMALL_A+digit); } } else { - return (char)((_ZERO-26)+digit); + return (char)((_ZERO_-26)+digit); } }