summaryrefslogtreecommitdiffstats
path: root/src/sha1.c
diff options
context:
space:
mode:
authorGravatar Duncan Ogilvie2024-11-26 18:39:28 +0100
committerGravatar Duncan Ogilvie2024-11-28 17:32:39 +0100
commit9bdf7fe983311e8c573d7c466c2006059645c4ba (patch)
tree293fe31fda5a98b03d83fe4fe6e821a4664264e6 /src/sha1.c
parent7d3cc96077d859fcda6dfe2a6bd2b1eb589af66d (diff)
downloadlibimobiledevice-glue-9bdf7fe983311e8c573d7c466c2006059645c4ba.tar.gz
libimobiledevice-glue-9bdf7fe983311e8c573d7c466c2006059645c4ba.tar.bz2
Fix compilation on MSVC
Diffstat (limited to 'src/sha1.c')
-rw-r--r--src/sha1.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sha1.c b/src/sha1.c
index 60c3b56..b4f87b3 100644
--- a/src/sha1.c
+++ b/src/sha1.c
@@ -12,7 +12,7 @@
#include "common.h"
#include "libimobiledevice-glue/sha.h"
-#include "fixedint.h"
+#include <stdint.h>
#define ROLc(x, y) \
( (((unsigned long)(x)<<(unsigned long)((y)&31)) | \