diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2011-02-11 19:09:30 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2011-02-11 19:09:30 +0100 |
commit | ab8d00d64fc23602875952c08c030f05f206686c (patch) | |
tree | 62832c02ad648d25a9395f26d59220ba932b8f88 /networking/tftp.c | |
parent | d55e13964916af6a083be881bffdb493af287c1d (diff) |
progress meter: fix bugs found in stall detection and unknown size logic
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'networking/tftp.c')
-rw-r--r-- | networking/tftp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/tftp.c b/networking/tftp.c index 2a3991755..35cf0dbd9 100644 --- a/networking/tftp.c +++ b/networking/tftp.c @@ -119,7 +119,7 @@ static void tftp_progress_done(void) if (is_bb_progress_inited(&G.pmt)) { tftp_progress_update(); bb_putchar_stderr('\n'); - bb_progress_free(p); + bb_progress_free(&G.pmt); } } #else |