Skip to content

Commit f05878e

Browse files
committed
Fix typo: CRTSECURE_NO_WARNINGS should be _CRT_SECURE_NO_WARNINGS.
1 parent 2cac70b commit f05878e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

easywsclient.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
#include "easywsclient.hpp"
22

33
#ifdef _WIN32
4-
// CRTSECURE_NO_WARNINGS for sscanf errors in MSVC2013 Express
5-
#define CRTSECURE_NO_WARNINGS
4+
// _CRT_SECURE_NO_WARNINGS for sscanf errors in MSVC2013 Express
5+
#define _CRT_SECURE_NO_WARNINGS
66
#ifndef WIN32_LEAN_AND_MEAN
77
#define WIN32_LEAN_AND_MEAN
88
#endif

0 commit comments

Comments
 (0)