diff options
author | Daniel Stenberg <daniel@haxx.se> | 2002-11-15 14:15:28 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2002-11-15 14:15:28 +0000 |
commit | fbee6b87f5ed86d80895495367fbe3729e8f1571 (patch) | |
tree | 3bba20d8851f53a51c085e0985064e10069e1dd3 /src | |
parent | 3836a70f976e5024ddc3af6b66f167e730791c61 (diff) |
fflush() the trace stream on each call
Diffstat (limited to 'src')
-rw-r--r-- | src/main.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/main.c b/src/main.c index ec84c5ff3..fb43e8001 100644 --- a/src/main.c +++ b/src/main.c @@ -2149,6 +2149,7 @@ void dump(const char *text, } fputc('\n', stream); /* newline */ } + fflush(stream); } static |