summaryrefslogtreecommitdiff
path: root/crypto
diff options
context:
space:
mode:
authorGerd Hoffmann <kraxel@redhat.com>2017-05-16 07:24:39 +0200
committerStefan Hajnoczi <stefanha@redhat.com>2017-05-16 15:33:25 +0100
commit612fc05ad210abfba656f2da89120041039c0b57 (patch)
treeee932cd7cfaf23b41078413ebf40fd50b6d6973d /crypto
parent3c2bdbc1e402fa88b80fcbba7f45cd778443e5c2 (diff)
downloadqemu-612fc05ad210abfba656f2da89120041039c0b57.tar.gz
fix mingw build failure
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com> Reviewed-by: Stefan Weil <sw@weilnetz.de> Reviewed-by: Daniel P. Berrange <berrange@redhat.com> Message-id: 20170516052439.16214-1-kraxel@redhat.com Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
Diffstat (limited to 'crypto')
-rw-r--r--crypto/random-platform.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/random-platform.c b/crypto/random-platform.c
index 0eddb915b7..92eed0ee78 100644
--- a/crypto/random-platform.c
+++ b/crypto/random-platform.c
@@ -23,7 +23,7 @@
#include "crypto/random.h"
#ifdef _WIN32
-#include <Wincrypt.h>
+#include <wincrypt.h>
static HCRYPTPROV hCryptProv;
#else
static int fd; /* a file handle to either /dev/urandom or /dev/random */