From 40ca1dd2d4d4d9f701a25088fd1097eae4836126 Mon Sep 17 00:00:00 2001 From: Gleb Natapov Date: Mon, 28 Aug 2006 10:27:27 +0000 Subject: [PATCH] ran dos2unix on it This commit was SVN r11463. --- ompi/mpi/c/wtick.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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 */ }