- Timestamp:
- Aug 14, 2005, 11:09:36 PM (19 years ago)
- Location:
- orxonox/trunk/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/src/lib/util/ini_parser.cc
r5018 r5019 123 123 // get next line 124 124 fgets (lineBuffer, PARSELINELENGHT, stream); 125 printf("%s", lineBuffer);126 125 // remove newline char, and \0-terminate 127 126 if( (ptr = strchr( lineBuffer, '\n')) != NULL) … … 129 128 // check for section identifyer 130 129 if (strlen(lineBuffer) <= 1) 131 printf("empty Line\n");130 ;//printf("empty Line\n"); 132 131 else if( sscanf (lineBuffer, "[%s", buffer) == 1) 133 132 { … … 172 171 this->currentSection->entries->add(newEntry); 173 172 } 174 175 173 } 176 174 } -
orxonox/trunk/src/orxonox.cc
r5018 r5019 139 139 140 140 // initialize the Config-file 141 printf("wet\n");142 141 this->getConfigFile(); 143 142
Note: See TracChangeset
for help on using the changeset viewer.