From 4c4a2e1a0bf537c336324599a2276682dc964fb1 Mon Sep 17 00:00:00 2001 From: Hanno Becker Date: Wed, 12 Jun 2019 12:45:12 +0100 Subject: [PATCH] Don't break func'def after linkage type, fixing check-names.sh --- include/mbedtls/ssl.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/mbedtls/ssl.h b/include/mbedtls/ssl.h index 562fdac92..16241029c 100644 --- a/include/mbedtls/ssl.h +++ b/include/mbedtls/ssl.h @@ -1115,8 +1115,8 @@ static inline unsigned int mbedtls_ssl_conf_get_ems( #endif /* MBEDTLS_SSL_CONF_EXTENDED_MASTER_SECRET */ } -static inline unsigned int -mbedtls_ssl_conf_get_ems_enforced( mbedtls_ssl_config const *conf ) +static inline unsigned int mbedtls_ssl_conf_get_ems_enforced( + mbedtls_ssl_config const *conf ) { #if !defined(MBEDTLS_SSL_CONF_ENFORCE_EXTENDED_MASTER_SECRET) return( conf->enforce_extended_master_secret );