Skip to content

Commit fd0069d

Browse files
[_MSC_VER] Fix typing error. (#440)
* [_MSC_VER] Fix typing error. * [_MSC_VER] Fix typing error.
1 parent a113be0 commit fd0069d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/libprojectM/Common.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
#include <cstdarg>
3232
#include <cassert>
3333

34-
#ifdef _MSC_sVER
34+
#ifdef _MSC_VER
3535
#define strcasecmp(s, t) _strcmpi(s, t)
3636
#endif
3737

src/projectm-android/app/jniLibs/include/libprojectM/Common.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
#include <cstdarg>
3232
#include <cassert>
3333

34-
#ifdef _MSC_sVER
34+
#ifdef _MSC_VER
3535
#define strcasecmp(s, t) _strcmpi(s, t)
3636
#endif
3737

0 commit comments

Comments
 (0)