From eca757eeea71184311dd442c945f6ed7875a782f Mon Sep 17 00:00:00 2001 From: bakkeby Date: Sun, 14 May 2023 22:28:15 +0200 Subject: [PATCH] pertag + vanitygaps: store signed ints rather than unsigned in case negative gap values are used --- patch/pertag.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/patch/pertag.c b/patch/pertag.c index 292076e..8a4f4d2 100644 --- a/patch/pertag.c +++ b/patch/pertag.c @@ -21,7 +21,7 @@ struct Pertag { #endif // ZOOMSWAP_PATCH #if PERTAG_VANITYGAPS_PATCH && VANITYGAPS_PATCH int enablegaps[NUMTAGS + 1]; - unsigned int gaps[NUMTAGS + 1]; + int gaps[NUMTAGS + 1]; #endif // PERTAG_VANITYGAPS_PATCH | VANITYGAPS_PATCH };