fix compilation error under icc.

git-svn-id: svn+ssh://svn.savannah.nongnu.org/linphone/trunk@491 3f6dc0c8-ddfe-455d-9043-3cd528dc4637
This commit is contained in:
smorlat 2009-06-05 08:00:24 +00:00
parent 16ae9ae801
commit 3225e1bf6d

View file

@ -462,7 +462,8 @@ size_t b64_encode2( void const *src
lineLen = 76;
break;
default:
assert(!"Bad line length flag specified to b64_encode2()");
/*the following assert makes a compiler error with icc*/
/*assert(!"Bad line length flag specified to b64_encode2()");*/
case B64_F_LINE_LEN_INFINITE:
lineLen = 0;
break;