Fix style for mbedtls_platform_gmtime()
diff --git a/library/platform_util.c b/library/platform_util.c
index e41f3c4..68d2522 100644
--- a/library/platform_util.c
+++ b/library/platform_util.c
@@ -87,9 +87,9 @@
struct tm *tm_buf )
{
#if defined(_WIN32) && !defined(EFIX64) && !defined(EFI32)
- return ( gmtime_s( tm_buf, tt ) == 0 ) ? tm_buf : NULL;
+ return( ( gmtime_s( tm_buf, tt ) == 0 ) ? tm_buf : NULL );
#elif !defined(PLATFORM_UTIL_USE_GMTIME)
- return gmtime_r( tt, tm_buf );
+ return( gmtime_r( tt, tm_buf ) );
#else
struct tm *lt;
@@ -110,7 +110,7 @@
return( NULL );
#endif /* MBEDTLS_THREADING_C */
- return ( lt == NULL ) ? NULL : tm_buf;
-#endif
+ return( ( lt == NULL ) ? NULL : tm_buf );
+#endif /* _WIN32 && !EFIX64 && !EFI32 */
}
#endif /* MBEDTLS_HAVE_TIME_DATE && MBEDTLS_PLATFORM_GMTIME_ALT */