aboutsummaryrefslogtreecommitdiffstats
path: root/src/zix
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2018-10-28 14:00:47 +0100
committerDavid Robillard <d@drobilla.net>2020-06-21 18:12:04 +0200
commitcaea81299db171a0e6ab5237e3aaaa10014a138f (patch)
tree5a92d928c9ff1859da6bb049d1500dd37186cb9a /src/zix
parentd188719d6f585d70791a7ad00be73f780b13226f (diff)
downloadserd-caea81299db171a0e6ab5237e3aaaa10014a138f.tar.gz
serd-caea81299db171a0e6ab5237e3aaaa10014a138f.tar.bz2
serd-caea81299db171a0e6ab5237e3aaaa10014a138f.zip
Add SerdNodes class for storing a cache of nodes
Diffstat (limited to 'src/zix')
-rw-r--r--src/zix/common.h1
-rw-r--r--src/zix/digest.c1
2 files changed, 1 insertions, 1 deletions
diff --git a/src/zix/common.h b/src/zix/common.h
index a59c033f..dc9455e0 100644
--- a/src/zix/common.h
+++ b/src/zix/common.h
@@ -79,6 +79,7 @@ zix_strerror(const ZixStatus status)
case ZIX_STATUS_EXISTS: return "Exists";
case ZIX_STATUS_BAD_ARG: return "Bad argument";
case ZIX_STATUS_BAD_PERMS: return "Bad permissions";
+ default: break;
}
return "Unknown error";
}
diff --git a/src/zix/digest.c b/src/zix/digest.c
index 587528f6..7f5490ba 100644
--- a/src/zix/digest.c
+++ b/src/zix/digest.c
@@ -20,7 +20,6 @@
# include <smmintrin.h>
#endif
-#include <limits.h>
#include <stdint.h>
#ifdef __SSE4_2__