1
0
mirror of https://github.com/Interlisp/maiko.git synced 2026-01-28 20:41:30 +00:00

Fix misleading indentation. (#172)

This commit is contained in:
Bruce Mitchener
2021-01-04 11:13:58 +07:00
committed by GitHub
parent 29d1740ca6
commit e63d123c24

View File

@@ -91,8 +91,8 @@ int ForkUnixShell(int slot, char *PtySlave, char *termtype, char *shellarg)
char envstring[64];
char *argvec[4];
if (0 > setsid()) /* create us a new session for tty purposes */
perror("setsid");
if (0 > setsid()) /* create us a new session for tty purposes */
perror("setsid");
/* Open the slave side */
SlaveFD = open(PtySlave, O_RDWR);