mirror of
https://github.com/warmcat/libwebsockets.git
synced 2025-03-09 00:00:04 +01:00
msvc: avoid error about mixed ellipsis and cond
https://github.com/warmcat/libwebsockets/issues/3001
This commit is contained in:
parent
5a5c31312e
commit
cf07fef590
1 changed files with 2 additions and 3 deletions
|
@ -791,11 +791,10 @@ lws_create_context(const struct lws_context_creation_info *info)
|
|||
mbedtls_version_get_string(mbedtls_version);
|
||||
#endif
|
||||
|
||||
lwsl_cx_notice(context,
|
||||
#if defined(LWS_WITH_MBEDTLS)
|
||||
"LWS: %s, MbedTLS-%s %s%s", library_version, mbedtls_version, opts_str, s);
|
||||
lwsl_cx_notice(context, "LWS: %s, MbedTLS-%s %s%s", library_version, mbedtls_version, opts_str, s);
|
||||
#else
|
||||
"LWS: %s, %s%s", library_version, opts_str, s);
|
||||
lwsl_cx_notice(context, "LWS: %s, %s%s", library_version, opts_str, s);
|
||||
#endif
|
||||
|
||||
#if defined(LWS_WITH_NETWORK)
|
||||
|
|
Loading…
Add table
Reference in a new issue