summaryrefslogtreecommitdiff
path: root/util.c
diff options
context:
space:
mode:
authorLeo Tenenbaum <pommicket@gmail.com>2021-03-03 12:15:37 -0500
committerLeo Tenenbaum <pommicket@gmail.com>2021-03-03 12:15:37 -0500
commitb061785c4a18e668e4328680d75fde9412381b0e (patch)
treee8b7010b81233c41f127d9afca3acb9f8a04005d /util.c
parent88172bdcd65976c63a836e29ecd56401eb4eb87b (diff)
don't merge edits with ctrl+v
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);