summaryrefslogtreecommitdiffstats
path: root/src/bit.h
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@tavianator.com>2023-09-26 15:42:35 -0400
committerTavian Barnes <tavianator@tavianator.com>2023-09-26 15:42:55 -0400
commitb395bb33e6f7d875307b18a4f9318ed0d34934ca (patch)
tree11cc5154e489a3d4014b82189ad8e0f9a2e85f3a /src/bit.h
parente7c3e124a13d95dcdf9ae2f1408b4780d2037401 (diff)
downloadbfs-b395bb33e6f7d875307b18a4f9318ed0d34934ca.tar.xz
bit: Fix UINTPTR_WIDTH typo
Diffstat (limited to 'src/bit.h')
-rw-r--r--src/bit.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bit.h b/src/bit.h
index e50a776..3f756f6 100644
--- a/src/bit.h
+++ b/src/bit.h
@@ -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