This fixes the following error:
```
In file included from ../src/basic/af-list.h:6,
from ../src/basic/af-list.c:7:
../src/basic/string-util.h: In function 'char_is_cc':
../src/basic/string-util.h:133:19: error: comparison is always true due to limited range of data type [-Werror=type-limits]
133 | return (p >= 0 && p < ' ') || p == 127;
| ^~
cc1: all warnings being treated as errors
```
Fixes #19543.
}
static inline bool char_is_cc(char p) {
- return (p >= 0 && p < ' ') || p == 127;
+ return (uint8_t) p < ' ' || p == 127;
}
bool string_has_cc(const char *p, const char *ok) _pure_;