From 299fc7149e788461f0078c8f0a7c434466d6c19b Mon Sep 17 00:00:00 2001 From: Brian Barrett Date: Sun, 17 Dec 2006 19:50:20 +0000 Subject: [PATCH] Argh! screwed up a merge. Fix compile error Refs trac:538 This commit was SVN r12887. The following Trac tickets were found above: Ticket 538 --> https://svn.open-mpi.org/trac/ompi/ticket/538 --- opal/util/stacktrace.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/opal/util/stacktrace.c b/opal/util/stacktrace.c index 1a9cbe4937..345db7ee50 100644 --- a/opal/util/stacktrace.c +++ b/opal/util/stacktrace.c @@ -75,7 +75,7 @@ static void opal_show_stackframe (int signo, siginfo_t * info, void * p) memset (print_buffer, 0, sizeof (print_buffer)); ret = snprintf(print_buffer, sizeof(print_buffer), HOSTFORMAT "*** Process received signal ***\n", - hostname, getpid()); + stacktrace_hostname, getpid()); write(fileno(stderr), print_buffer, ret); fflush(stderr);