1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-05-28 15:24:49 -05:00

fflush(stdout) after each line of stats

[originally from svn r3614]
This commit is contained in:
Jacob Nevins 2003-12-03 22:45:32 +00:00
parent d80be3891a
commit 1c1c9d3ccf

2
scp.c
View File

@ -466,6 +466,8 @@ static void print_stats(char *name, unsigned long size, unsigned long done,
if (done == size)
printf("\n");
fflush(stdout);
}
}