emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r110371: Fix a typo in a w32proc.c de


From: Eli Zaretskii
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r110371: Fix a typo in a w32proc.c declaration.
Date: Fri, 05 Oct 2012 13:19:58 +0200
User-agent: Bazaar (2.5.0)

------------------------------------------------------------
revno: 110371
committer: Eli Zaretskii <address@hidden>
branch nick: trunk
timestamp: Fri 2012-10-05 13:19:58 +0200
message:
  Fix a typo in a w32proc.c declaration.
  
   src/w32proc.c (stop_timer_thread): Fix declaration of 'err'.
modified:
  src/ChangeLog
  src/w32proc.c
=== modified file 'src/ChangeLog'
--- a/src/ChangeLog     2012-10-05 09:17:17 +0000
+++ b/src/ChangeLog     2012-10-05 11:19:58 +0000
@@ -1,5 +1,7 @@
 2012-10-05  Eli Zaretskii  <address@hidden>
 
+       * 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

=== modified file 'src/w32proc.c'
--- a/src/w32proc.c     2012-10-02 17:55:29 +0000
+++ b/src/w32proc.c     2012-10-05 11:19:58 +0000
@@ -404,8 +404,8 @@
   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;


reply via email to

[Prev in Thread] Current Thread [Next in Thread]