From: c. <car...@gm...> - 2012-09-07 07:50:49
|
On 7 Sep 2012, at 06:58, Claudio Freire wrote: > Regarding this patch, it seems there's a missing return > that makes > newer gcc complain about garbage being returned - there's a patch for > that attached. Thanks for reporting this. It seems the bug was not a missing return but rather a misplaced parentesys so I checked in this patch instead: =================================================================== --- MPI_Probe.cc (revision 10967) +++ MPI_Probe.cc (working copy) @@ -101,11 +101,8 @@ print_usage (); results = octave_value (-1); } - - return results; - - /* [ stat info ] = MPI_Probe (src, tag, comm) */ } + return results; } could you please check if this works for you? Thanks! c. |