flush the output each log call

This commit is contained in:
Bill Currie 2003-01-31 04:49:31 +00:00
parent fdb74e1aba
commit bf3da64c43

View file

@ -88,6 +88,7 @@ ma_log (const char *fmt, ...)
va_start (args, fmt);
vfprintf (stdout, fmt, args);
va_end (args);
fflush (stdout);
}
#ifdef HAVE_IN_PKTINFO