Skip to content

Commit

Permalink
fix wrong recursive func name
Browse files Browse the repository at this point in the history
  • Loading branch information
jxmx committed Jan 4, 2025
1 parent 83176d0 commit db058b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/app_rpt.c
Original file line number Diff line number Diff line change
Expand Up @@ -1129,7 +1129,7 @@ static void killpidtree(const int pid_int){
char *child_pid_str = strtok_r(buffer, " ");
while (child_pid_str != NULL) {
int child_pid_int = atoi(child_pid_str);
kill_process_and_children(child_pid_int);
killpidtree(child_pid_int);
child_pid_str = strtok_r(NULL, " ");
}
}
Expand Down

0 comments on commit db058b9

Please sign in to comment.