changeset 22410:bc38c1ff6698

fix definition of F77_RETURN for gfortran * f77-fcn.h (F77_RETURN) [F77_USES_GFORTRAN_CALLING_CONVENTION]: Fix definition to match F77_RET_T == void.
author John W. Eaton <jwe@octave.org>
date Wed, 31 Aug 2016 14:37:33 -0400
parents fda8d91b2e71
children c69805d1fa64
files liboctave/cruft/misc/f77-fcn.h
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/liboctave/cruft/misc/f77-fcn.h	Tue Aug 30 21:56:38 2016 -0700
+++ b/liboctave/cruft/misc/f77-fcn.h	Wed Aug 31 14:37:33 2016 -0400
@@ -282,7 +282,7 @@
 
 #define F77_RET_T void
 
-#define F77_RETURN(retval) return retval;
+#define F77_RETURN(retval) return;
 #if defined (HAVE_OCTAVE_NORETURN_ATTR)
 #  define F77_NORETURN(retval)
 #else