tsentinel - plan9port - [fork] Plan 9 from user space
 (HTM) git clone git://src.adamsgaard.dk/plan9port
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit bd18885d961fcabbd2ab39f017dc87fa6d090c94
 (DIR) parent 82908b6586f082c787bad13093739b9924cac438
 (HTM) Author: rsc <devnull@localhost>
       Date:   Wed, 13 Jul 2005 21:27:52 +0000
       
       sentinel
       
       Diffstat:
         M src/cmd/rio/menu.c                  |       6 +++---
       
       1 file changed, 3 insertions(+), 3 deletions(-)
       ---
 (DIR) diff --git a/src/cmd/rio/menu.c b/src/cmd/rio/menu.c
       t@@ -204,12 +204,12 @@ spawn(ScreenInfo *s)
                                signal(SIGTERM, SIG_DFL);
                                signal(SIGHUP, SIG_DFL);
                                if(termprog != NULL){
       -                                execl(shell, shell, "-c", termprog, 0);
       +                                execl(shell, shell, "-c", termprog, nil);
                                        fprintf(stderr, "rio: exec %s", shell);
                                        perror(" failed");
                                }
       -                        execlp("9term", "9term", scrolling ? "-ws" : "-w", 0);
       -                        execlp("xterm", "xterm", "-ut", 0);
       +                        execlp("9term", "9term", scrolling ? "-ws" : "-w", nil);
       +                        execlp("xterm", "xterm", "-ut", nil);
                                perror("rio: exec 9term/xterm failed");
                                exit(1);
                        }