aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/m4
diff options
context:
space:
mode:
authorEric Blake <eblake@redhat.com>2025-05-24 17:21:38 +0000
committerEd Maste <emaste@FreeBSD.org>2025-05-24 17:26:47 +0000
commitab4edcd552c967a400e85afc0fd3e6729fa9ee2c (patch)
treed48f645e1fc89fbf866945037953ae2758be6059 /usr.bin/m4
parentac196a5845757a4d92cdfc4927170576dce5de9d (diff)
Diffstat (limited to 'usr.bin/m4')
-rw-r--r--usr.bin/m4/misc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/m4/misc.c b/usr.bin/m4/misc.c
index d641ec56afeb..1870323ccb30 100644
--- a/usr.bin/m4/misc.c
+++ b/usr.bin/m4/misc.c
@@ -121,7 +121,7 @@ void
pbnumbase(int n, int base, int d)
{
static char digits[36] = "0123456789abcdefghijklmnopqrstuvwxyz";
- int num;
+ unsigned int num;
int printed = 0;
if (base > 36)