aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog.txt5
-rw-r--r--pseudo_db.c1
2 files changed, 6 insertions, 0 deletions
diff --git a/ChangeLog.txt b/ChangeLog.txt
index e0c66fc..e7f84a8 100644
--- a/ChangeLog.txt
+++ b/ChangeLog.txt
@@ -1,3 +1,8 @@
+2018-11-29:
+ * (seebs) add missing <stdint.h> to pseudo_db.c. Thanks to
+ Bernhard Hartleb <bernhard.hartleb@gmail.com> for pointing
+ this out.
+
2018-09-20:
* (seebs) coerce inodes to signed int64_t range when shoving
them into sqlite.
diff --git a/pseudo_db.c b/pseudo_db.c
index 0994048..d7b28f1 100644
--- a/pseudo_db.c
+++ b/pseudo_db.c
@@ -20,6 +20,7 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
+#include <stdint.h>
#include <sys/stat.h>
#include <sys/xattr.h>
#include <time.h>