From 2c00133fdc17f65b5f65102c490ce4b8ff68f6fd Mon Sep 17 00:00:00 2001 From: George Bosilca Date: Thu, 5 Feb 2009 16:18:39 +0000 Subject: [PATCH] Silence a possible casting warning. This commit was SVN r20447. --- ompi/mpi/f77/fint_2_int.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ompi/mpi/f77/fint_2_int.h b/ompi/mpi/f77/fint_2_int.h index 03f69f77ff..42ed90a47c 100644 --- a/ompi/mpi/f77/fint_2_int.h +++ b/ompi/mpi/f77/fint_2_int.h @@ -93,7 +93,7 @@ /* This is for OUT/IN-OUT parametes. Does back assignment and free */ #define OMPI_ARRAY_INT_2_FINT(in, n) \ do { \ - int __n = (n); \ + int __n = (int)(n); \ while(--__n > 0) { \ in[__n] = OMPI_ARRAY_NAME_CONVERT(in)[__n]; \ } \