Skip to content

Commit

Permalink
Quiet compiler warning on Solaris 10
Browse files Browse the repository at this point in the history
  • Loading branch information
millert committed Apr 30, 2024
1 parent 4d47acf commit ef52db4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/exec_monitor.c
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,7 @@ mon_handle_revoke(int fd, pid_t pgrp, struct command_status *cstat)
pgrp = tcpgrp;
}
sudo_debug_printf(SUDO_DEBUG_NOTICE, "%s: killpg(%d, SIGHUP)",
__func__, pgrp);
__func__, (int)pgrp);
killpg(pgrp, SIGHUP);

/*
Expand Down

0 comments on commit ef52db4

Please sign in to comment.