mirror of
https://github.com/curl/curl.git
synced 2026-05-19 21:56:22 +03:00
lib1945: fix compiler warning 4706 on MSVC
Follow-up from d1e4a67734
Closes #8623
This commit is contained in:
parent
8c3859b2a3
commit
ba4a8fa4d1
1 changed files with 4 additions and 0 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue