aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/node.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/node.h b/src/node.h
index c2f98c6e..32b3e149 100644
--- a/src/node.h
+++ b/src/node.h
@@ -20,9 +20,10 @@
#include "serd/serd.h"
#include <stddef.h>
+#include <stdint.h>
struct SerdNodeImpl {
- size_t n_bytes; /**< Size in bytes (not including null) */
+ uint64_t n_bytes; /**< Size in bytes (not including null) */
SerdNodeFlags flags; /**< Node flags (e.g. string properties) */
SerdNodeType type; /**< Node type */
};