--- rxvt-unicode/src/ptytty.C 2007/11/19 11:26:34 1.67 +++ rxvt-unicode/src/ptytty.C 2007/12/11 21:49:12 1.68 @@ -88,7 +88,8 @@ { if (grantpt (pfd) == 0 /* change slave permissions */ && unlockpt (pfd) == 0) - { /* slave now unlocked */ + { + /* slave now unlocked */ *ttydev = strdup (ptsname (pfd)); /* get slave's name */ return pfd; } @@ -327,7 +328,8 @@ struct group *gr = getgrnam ("tty"); if (gr) - { /* change group ownership of tty to "tty" */ + { + /* change group ownership of tty to "tty" */ mode = S_IRUSR | S_IWUSR | S_IWGRP; gid = gr->gr_gid; }