From 91047dc36b5e730f9541e213e972a07017a42695 Mon Sep 17 00:00:00 2001 From: Simon Butcher Date: Wed, 14 Mar 2018 17:02:16 +0000 Subject: [PATCH] Fix formatting and detail of comments in PR #730 Signed-off-by: Simon Butcher --- library/entropy_poll.c | 12 +++++++----- library/x509_crt.c | 7 ++++--- 2 files changed, 11 insertions(+), 8 deletions(-) diff --git a/library/entropy_poll.c b/library/entropy_poll.c index 1e465af7685a..f11a0b82292c 100644 --- a/library/entropy_poll.c +++ b/library/entropy_poll.c @@ -52,9 +52,10 @@ #if _WIN32_WINNT >= 0x0501 /* _WIN32_WINNT_WINXP */ #include #if defined(_MSC_VER) && _MSC_VER <= 1600 -/* Visual Studio 2010 and earlier issue a warning when both and are included, as they - * redefine a number of _MAX constants. These constants are guaranteed to be the same, though, so - * we suppress the warning when including intsafe.h. +/* Visual Studio 2010 and earlier issue a warning when both and + * are included, as they redefine a number of _MAX constants. + * These constants are guaranteed to be the same, though, so we suppress the + * warning when including intsafe.h. */ #pragma warning( push ) #pragma warning( disable : 4005 ) @@ -72,8 +73,9 @@ int mbedtls_platform_entropy_poll(void *data, unsigned char *output, size_t len, *olen = 0; /* - * BCryptGenRandom takes ULONG for size, which is smaller than size_t on 64-bit platforms. - * Ensure len's value can be safely converted into a ULONG. + * BCryptGenRandom takes ULONG for size, which is smaller than size_t on + * 64-bit Windows platforms. Ensure len's value can be safely converted into + * a ULONG. */ if ( FAILED( SizeTToULong( len, &len_as_ulong ) ) ) { diff --git a/library/x509_crt.c b/library/x509_crt.c index 8fc8a5273ba1..f73e215c26f9 100644 --- a/library/x509_crt.c +++ b/library/x509_crt.c @@ -62,9 +62,10 @@ #define WIN32_LEAN_AND_MEAN #include #if defined(_MSC_VER) && _MSC_VER <= 1600 -/* Visual Studio 2010 and earlier issue a warning when both and are included, as they - * redefine a number of _MAX constants. These constants are guaranteed to be the same, though, so - * we suppress the warning when including intsafe.h. +/* Visual Studio 2010 and earlier issue a warning when both and + * are included, as they redefine a number of _MAX constants. + * These constants are guaranteed to be the same, though, so we suppress the + * warning when including intsafe.h. */ #pragma warning( push ) #pragma warning( disable : 4005 )