Skip to content

Commit

Permalink
fix: break out in case of write problem (fix #44)
Browse files Browse the repository at this point in the history
  • Loading branch information
thebaptiste authored Nov 5, 2024
1 parent b41bd70 commit e53a1cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/log_proxy.c
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ int main(int argc, char *argv[])
if (write_status == FALSE) {
g_warning("error during write on: %s", log_file);
init_or_reinit_output_channel(log_file, use_locks);
continue;
break;
}
break;
}
Expand Down

0 comments on commit e53a1cb

Please sign in to comment.