https://git.reactos.org/?p=reactos.git;a=commitdiff;h=394eb8922778335e3b960a...
commit 394eb8922778335e3b960a7ae0f07b00b905b9de Author: Serge Gautherie 32623169+SergeGautherie@users.noreply.github.com AuthorDate: Thu Jun 6 01:50:55 2019 +0200 Commit: Hermès BÉLUSCA - MAÏTO hermes.belusca-maito@reactos.org CommitDate: Thu Jun 6 01:50:55 2019 +0200
[MBEDTLS] Use '#ifndef __REACTOS__', instead of '#if DBG & 0' (#1619)
- Don't use '|' on a '#if' - Remove a personal comment. --- sdk/include/reactos/libs/mbedtls/config.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/sdk/include/reactos/libs/mbedtls/config.h b/sdk/include/reactos/libs/mbedtls/config.h index 4e78b52b6df..b30a1a4e863 100644 --- a/sdk/include/reactos/libs/mbedtls/config.h +++ b/sdk/include/reactos/libs/mbedtls/config.h @@ -1897,8 +1897,8 @@ * * This module provides debugging functions. */ -#if DBG & 0 - #define MBEDTLS_DEBUG_C /* swyter: we don't even need this level of verboseness, useful only when developing */ +#ifndef __REACTOS__ +#define MBEDTLS_DEBUG_C #endif
/**