Skip to content

Commit b07f45f

Browse files
committed
bug: Fixing missing printout for count-down timer on fast format warning
Signed-off-by: Tyler Erickson <[email protected]>
1 parent 934613f commit b07f45f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

utils/C/openSeaChest/openSeaChest_Format.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
// Global Variables //
3838
////////////////////////
3939
const char* util_name = "openSeaChest_Format";
40-
const char* buildVersion = "3.2.0";
40+
const char* buildVersion = "3.2.1";
4141

4242
////////////////////////////
4343
// functions to declare //
@@ -1060,6 +1060,7 @@ int main(int argc, char* argv[])
10601060
for (int8_t counter = INT8_C(30); counter >= 0; --counter)
10611061
{
10621062
printf("\r%2d", counter);
1063+
flush_stdout();
10631064
delay_Seconds(UINT32_C(1));
10641065
}
10651066
printf("\n");

0 commit comments

Comments
 (0)