diff options
Diffstat (limited to 'usr.bin/truss/main.c')
-rw-r--r-- | usr.bin/truss/main.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/truss/main.c b/usr.bin/truss/main.c index d09ee67..7ea0dd0 100644 --- a/usr.bin/truss/main.c +++ b/usr.bin/truss/main.c @@ -71,7 +71,7 @@ extern void i386_linux_syscall_exit(int, int); int pid = 0; int nosigs = 0; -FILE *outfile = stderr; +FILE *outfile; int Procfd; char progtype[50]; /* OS and type of executable */ @@ -149,6 +149,7 @@ main(int ac, char **av) { char *fname = NULL; int sigexit = 0; + outfile = stdout; while ((c = getopt(ac, av, "p:o:S")) != -1) { switch (c) { case 'p': /* specified pid */ |