summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSimon Robertshaw <simon@hardwired.org.uk>2012-06-12 14:42:09 (GMT)
committer Simon Robertshaw <simon@hardwired.org.uk>2012-06-12 14:42:09 (GMT)
commit311190c148a550459149415d5e52918adcc77c73 (patch)
treea5af4a7abd98b6e1ce3d4dd754fcbaceb02ce726 /src
parent6f814528fcf09a5c2bda26a9054972ca13e4d874 (diff)
downloadpowder-311190c148a550459149415d5e52918adcc77c73.zip
powder-311190c148a550459149415d5e52918adcc77c73.tar.gz
Use stdint for 32bit Linux in BSON.h
Diffstat (limited to 'src')
-rw-r--r--src/bson/BSON.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bson/BSON.h b/src/bson/BSON.h
index c3de491..960eea1 100644
--- a/src/bson/BSON.h
+++ b/src/bson/BSON.h
@@ -28,7 +28,7 @@
#include <stdarg.h>
#include "Config.h"
-#if defined(LIN64) || defined(USE_STDINT)
+#if defined(LIN64) || defined(LIN32) || defined(USE_STDINT)
#include <sys/types.h>
#include <stdint.h>
#else