1
0
mirror of https://github.com/Interlisp/maiko.git synced 2026-01-14 15:36:34 +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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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);