From 373ef9952e0a3257762282ff84c6c19e8c04b444 Mon Sep 17 00:00:00 2001 From: peter Date: Mon, 13 Aug 2001 21:56:39 +0000 Subject: Initialize debugf in main() --- usr.bin/doscmd/debug.c | 2 +- usr.bin/doscmd/doscmd.c | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) (limited to 'usr.bin/doscmd') diff --git a/usr.bin/doscmd/debug.c b/usr.bin/doscmd/debug.c index b68f690..bbae145 100644 --- a/usr.bin/doscmd/debug.c +++ b/usr.bin/doscmd/debug.c @@ -41,7 +41,7 @@ #include "tty.h" /* debug output goes here */ -FILE *debugf = stderr; +FILE *debugf; /* see doscmd.h for flag names */ int debug_flags = D_ALWAYS; diff --git a/usr.bin/doscmd/doscmd.c b/usr.bin/doscmd/doscmd.c index 3bc58f6..5b189e2 100644 --- a/usr.bin/doscmd/doscmd.c +++ b/usr.bin/doscmd/doscmd.c @@ -119,6 +119,7 @@ main(int argc, char **argv) int fd; int i; + debugf = stderr; /* XXX should only be for tty mode */ fd = open (_PATH_DEVNULL, O_RDWR); if (fd != 3) -- cgit v1.1