Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Mar 10, 2006, 2:20:08 AM (18 years ago)
Author:
bensch
Message:

orxonox/std: even less evil

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/std/src/lib/util/loading/load_param.cc

    r7206 r7209  
    5959  if (likely(this->executor != NULL))
    6060  {
    61     std::string loadString;
     61    std::string loadString = "";
    6262    if (this->loadElem != NULL &&  this->loadElem->ToText())
    6363      loadString = this->loadElem->Value();
     
    6666          ((this->executor->getType() & Executor_NoLoadString) == Executor_NoLoadString)))
    6767    {
    68       PRINTF(4)("Loading '%s' with Parameters '%s' onto: '%s'(%s)\n", this->paramName, loadString, this->object->getName(), this->object->getClassName());
     68      PRINTF(4)("Loading '%s' with Parameters '%s' onto: '%s'(%s)\n", this->paramName, loadString.c_str(), this->object->getName(), this->object->getClassName());
    6969      this->executor->execute(this->object, &loadString);
    7070    }
Note: See TracChangeset for help on using the changeset viewer.