From padb at googlecode.com Fri Dec 27 17:31:55 2013 From: padb at googlecode.com (padb at googlecode.com) Date: Fri, 27 Dec 2013 17:31:55 +0000 Subject: [padb] r454 committed - Fix a spelling mistake in a comment. Message-ID: <047d7b6dc89472782b04ee8778dd@google.com> Revision: 454 Author: apittman Date: Fri Dec 27 17:31:38 2013 UTC Log: Fix a spelling mistake in a comment. http://code.google.com/p/padb/source/detail?r=454 Modified: /trunk/src/padb ======================================= --- /trunk/src/padb Tue Jul 2 21:48:44 2013 UTC +++ /trunk/src/padb Fri Dec 27 17:31:38 2013 UTC @@ -3517,7 +3517,7 @@ # Whilst it's possible to dip inside the struct in the process to # extract this information some builds don't associate a type with - # MPIR_proctable which means in those cases this methhod won't work. + # MPIR_proctable which means in those cases this method won't work. # Instead use a set of hardcoded values for offset and size as defined # by the interface and do the maths for finding each element ourselves. From padb at googlecode.com Fri Dec 27 19:44:35 2013 From: padb at googlecode.com (padb at googlecode.com) Date: Fri, 27 Dec 2013 19:44:35 +0000 Subject: [padb] r455 committed - Do not add extra newlines when reporting stderr from the MPI DLL. Message-ID: <089e0111d174eba84104ee89529e@google.com> Revision: 455 Author: apittman at gmail.com Date: Fri Dec 27 19:44:21 2013 UTC Log: Do not add extra newlines when reporting stderr from the MPI DLL. http://code.google.com/p/padb/source/detail?r=455 Modified: /trunk/src/padb ======================================= --- /trunk/src/padb Fri Dec 27 17:31:38 2013 UTC +++ /trunk/src/padb Fri Dec 27 19:44:21 2013 UTC @@ -7355,6 +7355,7 @@ $stderr .= $_; } if ($have_error_messages) { + chomp($stderr); target_error( $vp, "Stderr from minfo:\n$stderr" ); }