--- knights/core.cpp.ori 2003-03-02 12:34:04.000000000 +0200 +++ knights/core.cpp 2004-09-24 15:07:06.000000000 +0300 @@ -90,7 +90,7 @@ else { /* Use an existing internetIO */ - (io_base*)internetioPtr = myIOMap.find(Null); + internetioPtr = (io_internet *)myIOMap.find(Null); if( internetioPtr == NULL ) { kdWarning() << "core::createNewIO: Trying to connect a match to an internetIO that doesn't exsist." << endl; @@ -114,12 +114,12 @@ } else { - (io_base*)internetioPtr = myIOMap.find(ID); + internetioPtr = (io_internet *)myIOMap.find(ID); if( internetioPtr == NULL ) { /* no io mapped to the ID yet, use the internetio */ /* Use an existing internetIO */ - (io_base*)internetioPtr = myIOMap.find(Null); + internetioPtr = (io_internet *)myIOMap.find(Null); if( internetioPtr == NULL ) { kdWarning() << "core::createNewIO: Trying to connect a match to an internetIO that doesn't exsist." << endl;