lib1945: fix compiler warning 4706 on MSVC
Follow-up from d1e4a67734
Closes #8623
This commit is contained in:
parent
8c3859b2a3
commit
ba4a8fa4d1
@ -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;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user