lib1945: fix compiler warning 4706 on MSVC

Follow-up from d1e4a67734

Closes #8623
This commit is contained in:
Daniel Stenberg 2022-03-22 15:29:55 +01:00
parent 8c3859b2a3
commit ba4a8fa4d1
No known key found for this signature in database
GPG Key ID: 5CC908FDB71E12C2

View File

@ -24,6 +24,10 @@
#include "memdebug.h"
#ifdef _MSC_VER
/* warning C4706: assignment within conditional expression */
#pragma warning(disable:4706)
#endif
static void showem(CURL *easy, unsigned int type)
{
struct curl_header *header = NULL;