diff options
author | Leo Tenenbaum <pommicket@gmail.com> | 2021-03-03 12:15:37 -0500 |
---|---|---|
committer | Leo Tenenbaum <pommicket@gmail.com> | 2021-03-03 12:15:37 -0500 |
commit | b061785c4a18e668e4328680d75fde9412381b0e (patch) | |
tree | e8b7010b81233c41f127d9afca3acb9f8a04005d /util.c | |
parent | 88172bdcd65976c63a836e29ecd56401eb4eb87b (diff) |
don't merge edits with ctrl+v
Diffstat (limited to 'util.c')
-rw-r--r-- | util.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); |