From 161f270d4eae3953cb9e9bf020e9b8edadcb33a1 Mon Sep 17 00:00:00 2001 From: Janne Blomqvist Date: Wed, 9 Nov 2011 19:52:11 +0200 Subject: [PATCH] PR 46686 Fix incorrect comment. 2011-11-09 Janne Blomqvist PR fortran/46686 * runtime/backtrace.c (show_backtrace): Fix incorrect comment. From-SVN: r181217 --- libgfortran/ChangeLog | 5 +++++ libgfortran/runtime/backtrace.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/libgfortran/ChangeLog b/libgfortran/ChangeLog index 59d1a564340b..09172f1fe28d 100644 --- a/libgfortran/ChangeLog +++ b/libgfortran/ChangeLog @@ -1,3 +1,8 @@ +2011-11-09 Janne Blomqvist + + PR fortran/46686 + * runtime/backtrace.c (show_backtrace): Fix incorrect comment. + 2011-11-09 Tobias Burnus * configure.ac: Make more cross-compile friendly. diff --git a/libgfortran/runtime/backtrace.c b/libgfortran/runtime/backtrace.c index 70aae91cfe99..606dd34e9d42 100644 --- a/libgfortran/runtime/backtrace.c +++ b/libgfortran/runtime/backtrace.c @@ -210,7 +210,7 @@ show_backtrace (void) int f[2], pid, inp[2]; /* Don't output an error message if something goes wrong, we'll simply - fall back to the pstack and glibc backtraces. */ + fall back to printing the addresses. */ if (pipe (f) != 0) break; if (pipe (inp) != 0)