Skip to content

Commit 2a63cac

Browse files
committed
Fix comments
Signed-off-by: Bence Szépkúti <[email protected]>
1 parent 3165329 commit 2a63cac

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

include/mbedtls/debug.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,11 +113,11 @@
113113
#define MBEDTLS_PRINTF_SIZET PRIuPTR
114114
#define MBEDTLS_PRINTF_LONGLONG "I64d"
115115
#else \
116-
/* (defined(__MINGW32__) && __USE_MINGW_ANSI_STDIO == 0) || (defined(_MSC_VER) && _MSC_VER < 1900) */
116+
/* defined(__MINGW32__) || (defined(_MSC_VER) && _MSC_VER < 1900) */
117117
#define MBEDTLS_PRINTF_SIZET "zu"
118118
#define MBEDTLS_PRINTF_LONGLONG "lld"
119119
#endif \
120-
/* (defined(__MINGW32__) && __USE_MINGW_ANSI_STDIO == 0) || (defined(_MSC_VER) && _MSC_VER < 1900) */
120+
/* defined(__MINGW32__) || (defined(_MSC_VER) && _MSC_VER < 1900) */
121121

122122
#if !defined(MBEDTLS_PRINTF_MS_TIME)
123123
#include <inttypes.h>

0 commit comments

Comments
 (0)