summaryrefslogtreecommitdiff
path: root/util.c
diff options
context:
space:
mode:
Diffstat (limited to 'util.c')
-rw-r--r--util.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/util.c b/util.c
index f0daa09..f14f640 100644
--- a/util.c
+++ b/util.c
@@ -26,7 +26,7 @@ static u8 util_count_leading_zeroes32(u32 x) {
#if UINT_MAX == 4294967295
return (u8)__builtin_clz(x);
#else
- #error "unsigned int isn't 32 bits. this function needs fixing to work on sytems like yours."
+ #error "unsigned int isn't 32 bits. this function needs fixing to work on systems like yours."
#endif
#elif _WIN32
return (u8)__lzcnt(x);