Various type and cast bits.

This commit is contained in:
nhkeni
2022-03-16 18:18:52 -04:00
parent e51026aee1
commit a64a666f78
12 changed files with 28 additions and 14 deletions

View File

@@ -3045,7 +3045,7 @@ status_hilite_linestr_gather_conditions(void)
int i;
struct _cond_map {
unsigned long bm;
unsigned long clratr;
unsigned int clratr;
} cond_maps[SIZE(conditions)];
(void) memset(cond_maps, 0,
@@ -3075,7 +3075,7 @@ status_hilite_linestr_gather_conditions(void)
atr &= ~HL_NONE;
if (clr != NO_COLOR || atr != HL_NONE) {
unsigned long ca = clr | (atr << 8);
unsigned int ca = clr | (atr << 8);
boolean added_condmap = FALSE;
for (j = 0; j < SIZE(conditions); j++)