Skip to content

Commit 0eba6be

Browse files
committed
Downcase "Wincrypt.h"
This is consistent with how we refer to other Windows include files, and prevents a failure when cross-compiling on a system with case sensitive file names.
1 parent 3247082 commit 0eba6be

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/port/pg_strong_random.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
#include <openssl/rand.h>
2929
#endif
3030
#ifdef WIN32
31-
#include <Wincrypt.h>
31+
#include <wincrypt.h>
3232
#endif
3333

3434
#ifdef WIN32

0 commit comments

Comments
 (0)