ICU-10977 remove stray #if DEBUG from toolutil/ucbuf.c

X-SVN-Rev: 35947
This commit is contained in:
Steven R. Loomis 2014-06-25 21:54:18 +00:00
parent df08e453dc
commit 9ac287909f

View File

@ -176,7 +176,7 @@ ucbuf_fillucbuf( UCHARBUF* buf,UErrorCode* error){
memmove(buf->buffer,buf->currentPos,offset* sizeof(UChar));
}
#if DEBUG
#if UCBUF_DEBUG
memset(pTarget+offset,0xff,sizeof(UChar)*(MAX_IN_BUF-offset));
#endif
if(buf->isBuffered){
@ -293,8 +293,7 @@ ucbuf_fillucbuf( UCHARBUF* buf,UErrorCode* error){
}
outputWritten = (int32_t)(target - pTarget);
#if DEBUG
#if UCBUF_DEBUG
{
int i;
target = pTarget;