Skip to content

Commit

Permalink
Remove debugging printf(.) that was left in unixcomm.c
Browse files Browse the repository at this point in the history
  • Loading branch information
nbriggs committed Jan 4, 2022
1 parent 6bccbfb commit bb0b011
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/unixcomm.c
Original file line number Diff line number Diff line change
Expand Up @@ -526,7 +526,7 @@ LispPTR Unix_handlecomm(LispPTR *args) {
for (int i = 0; i < 10; i++) {
wait_for_comm_processes();
if (UJ[slot].status != -1) break;
usleep(10000); printf("."); fflush(stdout);
usleep(10000);
}
/* check again before we terminate it */
if (UJ[slot].status != -1) break;
Expand Down

0 comments on commit bb0b011

Please sign in to comment.