Skip to content

Commit

Permalink
wip: minor sender fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
blindchimp committed Dec 12, 2018
1 parent 44ed07e commit 98db997
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bld/cdc32/dlli.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -9230,7 +9230,7 @@ dwyco_background_processing(int port, int exit_if_outq_empty, const char *sys_pf
dwyco_signal_msg_cond();
while(1)
{
int spin;
int spin = 0;
int snooze = dwyco_service_channels(&spin);
int e;
if(exit_if_outq_empty && msg_outq_empty())
Expand Down
2 changes: 1 addition & 1 deletion dwycobg/dwycobg.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ main(int argc, char **argv)
if(argc != 2) return 0;
int port = atoi(argv[1]);
if(port < 1024 || port > 65535) return 0;
dwyco_background_processing(port, 1, 0, 0, 0);
dwyco_background_processing(port, 1, 0, 0, 0, 0);
return 0;
}

0 comments on commit 98db997

Please sign in to comment.