From 4ccd171f8a5e5776dcdcb90feb9bfe5df8b89f0f Mon Sep 17 00:00:00 2001 From: Jeff Squyres Date: Fri, 25 Mar 2005 20:42:17 +0000 Subject: [PATCH] Fix a comment This commit was SVN r5030. --- src/op/op.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/op/op.c b/src/op/op.c index 36f0ca6d59..838b2a3fd3 100644 --- a/src/op/op.c +++ b/src/op/op.c @@ -470,7 +470,7 @@ int ompi_op_finalize(void) * Create a new MPI_Op */ ompi_op_t *ompi_op_create(bool commute, - ompi_op_fortran_handler_fn_t *func) + ompi_op_fortran_handler_fn_t *func) { int i; ompi_op_t *new_op; @@ -486,7 +486,7 @@ ompi_op_t *ompi_op_create(bool commute, /* The new object is valid -- initialize it. If this is being created from fortran, the fortran MPI API wrapper function - will override the o_fortran_field directly. We cast the + will override the o_flags field directly. We cast the function pointer type to the fortran type arbitrarily -- it only has to be a function pointer in order to store properly, it doesn't matter what type it is (we'll cast it to the Right