diff --git a/library/entropy_poll.c b/library/entropy_poll.c index af0db891a2b7..cefe882d2a86 100644 --- a/library/entropy_poll.c +++ b/library/entropy_poll.c @@ -56,9 +56,10 @@ #include #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 ) @@ -76,8 +77,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 f01f2440c2a2..046cd1210437 100644 --- a/library/x509_crt.c +++ b/library/x509_crt.c @@ -65,9 +65,10 @@ #if defined(_WIN32) && !defined(EFIX64) && !defined(EFI32) #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 )