diff options
Diffstat (limited to 'src/tests/md_openmp.c')
-rw-r--r-- | src/tests/md_openmp.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/tests/md_openmp.c b/src/tests/md_openmp.c index cc5d790..4398d7b 100644 --- a/src/tests/md_openmp.c +++ b/src/tests/md_openmp.c @@ -689,13 +689,12 @@ void timestamp ( void ) static char time_buffer[TIME_SIZE]; const struct tm *tm; - size_t len; time_t now; now = time ( NULL ); tm = localtime ( &now ); - len = strftime ( time_buffer, TIME_SIZE, "%d %B %Y %I:%M:%S %p", tm ); + strftime ( time_buffer, TIME_SIZE, "%d %B %Y %I:%M:%S %p", tm ); printf ( "%s\n", time_buffer ); |