Fix a typo in a w32proc.c declaration.
authorEli Zaretskii <eliz@gnu.org>
Fri, 5 Oct 2012 11:19:58 +0000 (13:19 +0200)
committerEli Zaretskii <eliz@gnu.org>
Fri, 5 Oct 2012 11:19:58 +0000 (13:19 +0200)
 src/w32proc.c (stop_timer_thread): Fix declaration of 'err'.

src/ChangeLog
src/w32proc.c

index b250201..cb17e81 100644 (file)
@@ -1,5 +1,7 @@
 2012-10-05  Eli Zaretskii  <eliz@gnu.org>
 
+       * w32proc.c (stop_timer_thread): Fix declaration of 'err'.
+
        * w32.c (utime): Open the file with FILE_FLAG_BACKUP_SEMANTICS, so
        that time stamps of directories could also be changed.  Don't
        request the too broad GENERIC_WRITE, only the more restrictive
index 56a60fb..d032b21 100644 (file)
@@ -404,8 +404,8 @@ stop_timer_thread (int which)
   struct itimer_data *itimer =
     (which == ITIMER_REAL) ? &real_itimer : &prof_itimer;
   int i;
-  DWORD exit_code = 255;
-  BOOL status, err;
+  DWORD err, exit_code = 255;
+  BOOL status;
 
   /* Signal the thread that it should terminate.  */
   itimer->terminate = 1;