From d1566728e28623e9bdd894a021aed19c2ac5ae0f Mon Sep 17 00:00:00 2001 From: iceman1001 Date: Mon, 30 Oct 2017 15:10:32 +0100 Subject: [PATCH] more fflushes. --- client/flash.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/client/flash.c b/client/flash.c index ea1721502..8189af306 100644 --- a/client/flash.c +++ b/client/flash.c @@ -331,7 +331,7 @@ static int enter_bootloader(char *serial_port_name) { fprintf(stdout, "Waiting for Proxmark to reappear on %s", serial_port_name); do { msleep(1000); - fprintf(stdout, "."); + fprintf(stdout, "."); fflush(stdout); } while ( !OpenProxmark()); fprintf(stdout, " Found.\n"); return 0; @@ -417,7 +417,7 @@ int flash_write(flash_file_t *ctx) { uint32_t end = seg->start + length; fprintf(stdout, " 0x%08x..0x%08x [0x%x / %d blocks]", seg->start, end - 1, length, blocks); - fflush(); + fflush(stdout); int block = 0; uint8_t *data = seg->data; uint32_t baddr = seg->start; @@ -438,10 +438,10 @@ int flash_write(flash_file_t *ctx) { length -= block_size; block++; fprintf(stdout, "."); - fflush(); + fflush(stdout); } fprintf(stdout, " OK\n"); - fflush(); + fflush(stdout); } return 0; }