Skip to content

Commit

Permalink
format: multiplication
Browse files Browse the repository at this point in the history
  • Loading branch information
XavierChanth committed Oct 18, 2024
1 parent 6964d4f commit 693870e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/c/sshnpd/src/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ int main(int argc, char **argv) {
exit_res = res;
goto cancel_monitor_ctx;
}
atclient_monitor_set_read_timeout(&monitor_ctx, params.monitor_read_timeout*1000);
atclient_monitor_set_read_timeout(&monitor_ctx, params.monitor_read_timeout * 1000);

// 7.b Initialize the worker atclient
atclient_init(&worker);
Expand Down Expand Up @@ -439,7 +439,7 @@ void main_loop() {
sleep(1);
break;
}
atclient_monitor_set_read_timeout(&monitor_ctx, params.monitor_read_timeout*1000);
atclient_monitor_set_read_timeout(&monitor_ctx, params.monitor_read_timeout * 1000);

ret = atclient_monitor_start(&monitor_ctx, regex);
if (ret != 0) {
Expand Down

0 comments on commit 693870e

Please sign in to comment.