aboutsummaryrefslogtreecommitdiffstats
path: root/src/zix
diff options
context:
space:
mode:
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__