Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 5019 in orxonox.OLD for orxonox/trunk/src/lib/util/ini_parser.cc


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

orxonox/trunk: minor cleanup

File:
1 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  }
Note: See TracChangeset for help on using the changeset viewer.