]> sourceware.org Git - newlib-cygwin.git/commitdiff
* pinfo.cc (_pinfo::dup_proc_pipe): Fix order of arguments in debug
authorCorinna Vinschen <corinna@vinschen.de>
Mon, 5 Mar 2012 12:12:10 +0000 (12:12 +0000)
committerCorinna Vinschen <corinna@vinschen.de>
Mon, 5 Mar 2012 12:12:10 +0000 (12:12 +0000)
output.

winsup/cygwin/ChangeLog
winsup/cygwin/pinfo.cc

index 90fcd96ed25f98afd794a41165e0e1aa9b7d2ec3..96d8cd39f946c772edf97e16a012fefba8a66428 100644 (file)
@@ -1,3 +1,8 @@
+2012-03-05  Denis Excoffier  <cygwin@Denis-Excoffier.org>
+
+       * pinfo.cc (_pinfo::dup_proc_pipe): Fix order of arguments in debug
+       output.
+
 2012-03-05  Corinna Vinschen  <corinna@vinschen.de>
 
        * init.cc (dll_entry): Move wincap.init call back from here...
index 2615e32ac488e98709e01b712ad6864271e4a553..8a00bd0a642f5873644d89e996c08ed8753fb3ef 100644 (file)
@@ -1001,7 +1001,7 @@ _pinfo::dup_proc_pipe (HANDLE hProcess)
     {
       wr_proc_pipe = orig_wr_proc_pipe;
       warn_printf ("something failed for pid %d: res %d, hProcess %p, wr_proc_pipe %p vs. %p, %E",
-                  res, pid, hProcess, wr_proc_pipe, orig_wr_proc_pipe);
+                  pid, res, hProcess, wr_proc_pipe, orig_wr_proc_pipe);
     }
   else
     {
This page took 0.033531 seconds and 5 git commands to generate.