Skip to content

Commit 7b04224

Browse files
authored
Update activity.c
1 parent 075e4a3 commit 7b04224

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/lib_ccx/activity.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ unsigned long net_activity_gui = 0;
99
/* Print current progress. For percentage, -1 -> streaming mode */
1010
void activity_progress(int percentage, int cur_min, int cur_sec)
1111
{
12-
() if (!ccx_options.no_progress_bar)
12+
if (!ccx_options.no_progress_bar)
1313
{
1414
if (percentage == -1)
1515
mprint("Streaming | %02d:%02d\r", cur_min, cur_sec);
@@ -20,6 +20,7 @@ void activity_progress(int percentage, int cur_min, int cur_sec)
2020
mprint("\n");
2121
}
2222
}
23+
printf("test");
2324
fflush(stdout);
2425
if (ccx_options.gui_mode_reports)
2526
{

0 commit comments

Comments
 (0)