diff --git a/ompi/mpi/c/wtick.c b/ompi/mpi/c/wtick.c index 86e551c5a8..bde840ff78 100644 --- a/ompi/mpi/c/wtick.c +++ b/ompi/mpi/c/wtick.c @@ -42,9 +42,9 @@ double MPI_Wtick(void) #if OPAL_TIMER_USEC_NATIVE return 0.000001; #else - if( (opal_timer_t)0 == opal_timer_base_get_freq() ) { - opal_output( 0, "No timer frequency\n" ); - } - return (double)opal_timer_base_get_freq(); -#endif /* OPAL_TIMER_USEC_NATIVE */ + if( (opal_timer_t)0 == opal_timer_base_get_freq() ) { + opal_output( 0, "No timer frequency\n" ); + } + return (double)opal_timer_base_get_freq(); +#endif /* OPAL_TIMER_USEC_NATIVE */ }