Wed Oct 13 11:47:23 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
+ * inflow.c: Pass pointer to process group, not process group itself,
+ to TIOCSPGRP ioctl.
+
* inflow.c (terminal_ours_1): Don't print warning on failure to
set process group.
#endif
#ifdef HAVE_SGTTY
- result = ioctl (0, TIOCSPGRP, inferior_process_group);
+ result = ioctl (0, TIOCSPGRP, &inferior_process_group);
if (!attach_flag)
OOPSY ("TIOCSPGRP");
#endif
#endif /* termios */
#ifdef HAVE_SGTTY
- result = ioctl (0, TIOCSPGRP, our_process_group);
+ result = ioctl (0, TIOCSPGRP, &our_process_group);
#endif
}