From 823dfcfc39901af7b72903d88623d7284d8cb859 Mon Sep 17 00:00:00 2001 From: szabii Date: Sat, 9 Jun 2001 17:41:31 +0000 Subject: [PATCH] fix again git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1078 b3059339-0415-0410-9bf9-f77b7e298cf2 --- cfgparser.c | 6 ------ 1 file changed, 6 deletions(-) diff --git a/cfgparser.c b/cfgparser.c index ea07e0c18c..350bf8efe2 100644 --- a/cfgparser.c +++ b/cfgparser.c @@ -30,8 +30,6 @@ #include "cfgparser.h" -extern int verbose; - static struct config *config; static int nr_options; /* number of options in 'conf' */ static int parser_mode; /* COMMAND_LINE or CONFIG_FILE */ @@ -253,8 +251,6 @@ int parse_config_file(struct config *conf, char *conffile) return -1; } -// printf("Reading config file: %s", conffile); - if (init_conf(conf, CONFIG_FILE) == -1) { ret = -1; goto out; @@ -267,12 +263,10 @@ int parse_config_file(struct config *conf, char *conffile) } if ((fp = fopen(conffile, "r")) == NULL) { -// printf(": %s\n", strerror(errno)); free(line); ret = 0; goto out; } -// printf("\n"); while (fgets(line, MAX_LINE_LEN, fp)) { line_num++;