Browse Source

Remove debug message from lub_ini_parse_file()

Serj Kalichev 9 years ago
parent
commit
2b57200bf2
1 changed files with 0 additions and 1 deletions
  1. 0 1
      lub/ini/ini.c

+ 0 - 1
lub/ini/ini.c

@@ -163,7 +163,6 @@ int lub_ini_parse_file(lub_ini_t *this, const char *fn)
 	while (fgets(buf + p, size - p, f)) {
 		char *tmp;
 		if (feof(f) || strchr(buf + p, '\n') || strchr(buf + p, '\r')) {
-printf("%s", buf);
 			lub_ini_parse_str(this, buf);
 			p = 0;
 			continue;