From 3225e1bf6dd47c13f391730db671809fd7cad207 Mon Sep 17 00:00:00 2001 From: smorlat Date: Fri, 5 Jun 2009 08:00:24 +0000 Subject: [PATCH] fix compilation error under icc. git-svn-id: svn+ssh://svn.savannah.nongnu.org/linphone/trunk@491 3f6dc0c8-ddfe-455d-9043-3cd528dc4637 --- linphone/oRTP/src/b64.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/linphone/oRTP/src/b64.c b/linphone/oRTP/src/b64.c index 352367198..b8d925351 100644 --- a/linphone/oRTP/src/b64.c +++ b/linphone/oRTP/src/b64.c @@ -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;