From 0322bad8f38e54fe311a9b13ed7925f59a08b324 Mon Sep 17 00:00:00 2001 From: Brian Barrett Date: Thu, 9 Mar 2006 05:24:32 +0000 Subject: [PATCH] * fix stupid missing closing ). Thanks to George for pointing this one out. This should go to the v1.0 branch with r9223. This commit was SVN r9224. The following SVN revision numbers were found above: r9223 --> open-mpi/ompi@d71750d073fcd51b86f4d460cc4a8c8b975d394f --- opal/util/printf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/opal/util/printf.c b/opal/util/printf.c index 619d5eb0c3..484e608cd6 100644 --- a/opal/util/printf.c +++ b/opal/util/printf.c @@ -199,7 +199,7 @@ int opal_vasprintf(char **ptr, const char *fmt, va_list ap) #if OMPI_HAVE_VA_COPY va_copy(ap2, ap); #elif OMPI_HAVE_UNDERSCORE_VA_COPY - __va_copy(ap2, ap; + __va_copy(ap2, ap); #else memcpy (&ap2, &ap, sizeof(va_list)); #endif