1
1

* 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@d71750d073
Этот коммит содержится в:
Brian Barrett 2006-03-09 05:24:32 +00:00
родитель d71750d073
Коммит 0322bad8f3

Просмотреть файл

@ -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