[MBEDTLS] Use '#ifndef __REACTOS__', instead of '#if DBG & 0' (#1619)

- Don't use '|' on a '#if'
- Remove a personal comment.
This commit is contained in:
Serge Gautherie 2019-06-06 01:50:55 +02:00 committed by Hermès BÉLUSCA - MAÏTO
parent 2f0b265e8d
commit 394eb89227

View file

@ -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
/**