Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 5019 in orxonox.OLD


Ignore:
Timestamp:
Aug 14, 2005, 11:09:36 PM (19 years ago)
Author:
bensch
Message:

orxonox/trunk: minor cleanup

Location:
orxonox/trunk/src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • orxonox/trunk/src/lib/util/ini_parser.cc

    r5018 r5019  
    123123      // get next line
    124124      fgets (lineBuffer, PARSELINELENGHT, stream);
    125       printf("%s", lineBuffer);
    126125      // remove newline char, and \0-terminate
    127126      if( (ptr = strchr( lineBuffer, '\n')) != NULL)
     
    129128      // check for section identifyer
    130129      if (strlen(lineBuffer) <= 1)
    131         printf("empty Line\n");
     130        ;//printf("empty Line\n");
    132131      else if( sscanf (lineBuffer, "[%s", buffer) == 1)
    133132      {
     
    172171        this->currentSection->entries->add(newEntry);
    173172      }
    174 
    175173    }
    176174  }
  • orxonox/trunk/src/orxonox.cc

    r5018 r5019  
    139139
    140140  // initialize the Config-file
    141   printf("wet\n");
    142141  this->getConfigFile();
    143142
Note: See TracChangeset for help on using the changeset viewer.