Browse Source

remove superflous ')' from previous commit

Henning Westerholt 16 years ago
parent
commit
dabfcccafd
1 changed files with 1 additions and 1 deletions
  1. 1 1
      cfg.y

+ 1 - 1
cfg.y

@@ -2788,7 +2788,7 @@ static void yyerror_at(struct cfg_pos* p, char* format, ...)
 	vsnprintf(s, sizeof(s), format, ap);
 	va_end(ap);
 	if (p->e_line!=p->s_line)
-		LOG(L_CRIT, "parse error in config file, from line %d, column %d to line %d, column %d): %s\n",
+		LOG(L_CRIT, "parse error in config file, from line %d, column %d to line %d, column %d: %s\n",
 					p->s_line, p->s_col, p->e_line, p->e_col, s);
 	else if (p->s_col!=p->e_col)
 		LOG(L_CRIT, "parse error in config file, line %d, column %d-%d: %s\n",