Fixed a const cast.

git-svn-id: http://yate.null.ro/svn/yate/trunk@1213 acf43c95-373e-0410-b603-e72c3f656dc1
This commit is contained in:
paulc 2007-03-09 01:08:39 +00:00
parent 079c588761
commit 9d62f62b27
1 changed files with 1 additions and 1 deletions

View File

@ -108,7 +108,7 @@ bool DumbDriver::msgExecute(Message& msg, String& dest)
if (params) {
ObjList* lst = params.split(',',false);
for (ObjList* l = lst; l; l = l->next()) {
String* s = static_cast<const String*>(l->get());
String* s = static_cast<String*>(l->get());
if (!s)
continue;
s->trimBlanks();