diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2023-09-26 15:42:35 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2023-09-26 15:42:55 -0400 |
commit | b395bb33e6f7d875307b18a4f9318ed0d34934ca (patch) | |
tree | 11cc5154e489a3d4014b82189ad8e0f9a2e85f3a /src/bit.h | |
parent | e7c3e124a13d95dcdf9ae2f1408b4780d2037401 (diff) | |
download | bfs-b395bb33e6f7d875307b18a4f9318ed0d34934ca.tar.xz |
bit: Fix UINTPTR_WIDTH typo
Diffstat (limited to 'src/bit.h')
-rw-r--r-- | src/bit.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -108,7 +108,7 @@ #ifndef UINTPTR_WIDTH # ifdef __INTPTR_WIDTH__ -# define INTPTR_WIDTH __INTPTR_WIDTH__ +# define UINTPTR_WIDTH __INTPTR_WIDTH__ # else # define UINTPTR_WIDTH UMAX_WIDTH(UINTPTR_MAX) # endif |