Removed signed-unsigned integer comparison in macro (#3875)
* Cutter complains about this in its build
This commit is contained in:
parent
a21f4bc7e7
commit
0bbec475f6
1 changed files with 1 additions and 1 deletions
|
|
@ -749,7 +749,7 @@ static const char *RzAnalysisVarOriginKind_strings[] = {
|
|||
return strings[k]; \
|
||||
} \
|
||||
static inline T rz_analysis_##name##_from_string(const char *s) { \
|
||||
for (int i = 0; i < RZ_ARRAY_SIZE(strings); ++i) { \
|
||||
for (unsigned int i = 0; i < RZ_ARRAY_SIZE(strings); ++i) { \
|
||||
if (RZ_STR_EQ(s, strings[i])) { \
|
||||
return (T)i; \
|
||||
} \
|
||||
|
|
|
|||
Loading…
Reference in a new issue