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. ------------------------------------------------------------------------------ Live Security Virtual Conference Exclusive live event will cover all the ways today's security and threat landscape has changed and how IT managers can respond. Discussions will include endpoint security, mobile security and the latest in malware threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/ _______________________________________________ Octave-dev mailing list Octave-dev@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/octave-dev