commit ea38f4e05e493b054916de1905b8fcd31f8debb2
parent 7b8e89563f05d76f6b16d5726283a8f3ec35244c
Author: Christian Grothoff <christian@grothoff.org>
Date: Mon, 30 Jul 2012 13:23:03 +0000
fix
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/main/extractor_logging.c b/src/main/extractor_logging.c
@@ -39,8 +39,8 @@ EXTRACTOR_log_ (const char *file, int line, const char *format, ...)
va_list va;
fprintf (stderr,
- sizeof (file_line),
- "EXTRACTOR %s:%d ");
+ "EXTRACTOR %s:%d ",
+ file, line);
va_start (va, format);
vfprintf (stderr, format, va);
va_end (va);