Skip to content

Commit

Permalink
use lower-case "windows.h"
Browse files Browse the repository at this point in the history
Capitalized Windows.h breaks on MinGW. "windows.h" is the proper include.
  • Loading branch information
aberaud committed Apr 5, 2016
1 parent 137bf99 commit 8a86be6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/thread.c
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#include "thread.h"
#if defined(_WIN32)
#include <Windows.h>
#include <windows.h>
#endif

int argon2_thread_create(argon2_thread_handle_t *handle,
Expand Down

0 comments on commit 8a86be6

Please sign in to comment.