OSDN Git Service

* strace.cc (main): Make toggle a local variable.
authorcgf <cgf>
Fri, 7 Jun 2002 01:37:20 +0000 (01:37 +0000)
committercgf <cgf>
Fri, 7 Jun 2002 01:37:20 +0000 (01:37 +0000)
winsup/utils/ChangeLog
winsup/utils/strace.cc

index c5c6c60..dd09e50 100644 (file)
@@ -1,3 +1,7 @@
+2002-06-06  Christopher Faylor  <cgf@redhat.com>
+
+       * strace.cc (main): Make toggle a local variable.
+
 2002-06-07  Conrad Scott  <conrad.scott@dsl.pipex.com>
 
        * strace.cc (toggle): New global variable.
index 42d2fef..69a7fa8 100644 (file)
@@ -43,7 +43,6 @@ static int numerror = 1;
 static int usecs = 1;
 static int delta = 1;
 static int hhmmss = 0;
-static int toggle = 0;
 static int bufsize = 0;
 static int new_window = 0;
 static long flush_period = 0;
@@ -898,6 +897,7 @@ main (int argc, char **argv)
   FILE *ofile = NULL;
   pid_t pid = 0;
   int opt;
+  int toggle = 0;
 
   if (!(pgm = strrchr (*argv, '\\')) && !(pgm = strrchr (*argv, '/')))
     pgm = *argv;