From 39dda40d7d6607098bff25902331b33ac0c8e091 Mon Sep 17 00:00:00 2001 From: "Steven R. Loomis" Date: Tue, 26 Oct 1999 17:53:50 +0000 Subject: [PATCH] Cast U_MAX_PTR to some type. 'void' has no size! X-Trac-URL: https://ssl.icu-project.org/trac/ticket/52 git-svn-id: http://source.icu-project.org/repos/icu/icu/trunk@123 0a8b766c-62c9-45f9-954d-7f2943c9ead0 --- source/common/ucnv.c | 4 ++-- source/common/unistr.cpp | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/source/common/ucnv.c b/source/common/ucnv.c index 98e507c7480..b652f6c16c0 100644 --- a/source/common/ucnv.c +++ b/source/common/ucnv.c @@ -745,7 +745,7 @@ int32_t ucnv_fromUChars (const UConverter * converter, myTarget_limit = target + targetSize; if(myTarget_limit < target) /*if targetsize is such that the limit*/ - myTarget_limit = U_MAX_PTR; /* would wrap around, truncate it. */ + myTarget_limit = (char *)U_MAX_PTR; /* would wrap around, truncate it. */ if (targetSize > 0) { @@ -853,7 +853,7 @@ int32_t ucnv_toUChars (const UConverter * converter, myTarget_limit = target + targetSize - 1; if(myTarget_limit < target) /*if targetsize is such that the limit*/ - myTarget_limit = U_MAX_PTR - 1; /* would wrap around, truncate it. */ + myTarget_limit = ((UChar*)U_MAX_PTR) - 1; /* would wrap around, truncate it. */ /*Not in pure pre-flight mode */ diff --git a/source/common/unistr.cpp b/source/common/unistr.cpp index b77cd7daacc..8a4925d9a42 100644 --- a/source/common/unistr.cpp +++ b/source/common/unistr.cpp @@ -785,7 +785,7 @@ UnicodeString::extract(UTextOffset start, myTargetLimit = myTarget + arraySize; if(myTargetLimit < myTarget) /* ptr wrapped around: pin to U_MAX_PTR */ - myTargetLimit = U_MAX_PTR; + myTargetLimit = (char*)U_MAX_PTR; // perform the conversion // there is no loop here since we assume the buffer is large enough