Skip to content

Commit a551039

Browse files
committed
Fix bug in init macro
Signed-off-by: Jake Tronge <[email protected]>
1 parent c657db4 commit a551039

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ompi/util/count_disp_array.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ static inline void ompi_disp_array_init_c(ompi_disp_array_t *array, const ptrdif
119119
if (sizeof(*(data)) == sizeof(int)) { \
120120
ompi_disp_array_init(array, (const int *) (data)); \
121121
} else if (sizeof(*(data)) == sizeof(ptrdiff_t)) { \
122-
ompi_disp_array_init(array, (const ptrdiff_t *) (data)); \
122+
ompi_disp_array_init_c(array, (const ptrdiff_t *) (data)); \
123123
} \
124124
} while(0)
125125
#endif

0 commit comments

Comments
 (0)