When looking at the build log, I saw a -Wold-style-definition warning in
libgfortran.
I have committed fix as obvious (Rev. 176109).
Tobias
Index: libgfortran/runtime/error.c
===================================================================
--- libgfortran/runtime/error.c (Revision 176108)
+++ libgfortran/runtime/error.c (Arbeitskopie)
@@ -164,7 +164,7 @@ st_printf (const char * format, ...)
core. */
void
-sys_abort ()
+sys_abort (void)
{
/* If backtracing is enabled, print backtrace and disable signal
handler for ABRT. */
Index: libgfortran/ChangeLog
===================================================================
--- libgfortran/ChangeLog (Revision 176108)
+++ libgfortran/ChangeLog (Arbeitskopie)
@@ -1,4 +1,9 @@
2011-07-09 Tobias Burnus <[email protected]>
+
+ * runtime/error.c (sys_abort): Change argument list
+ from "()" to "(void)".
+
+2011-07-09 Tobias Burnus <[email protected]>
Daniel Carrera <[email protected]>
* caf/mpi.c (runtime_error): New function.