fix warning: use size_t when comparing against strlen()
This commit is contained in:
parent
5beaea3034
commit
807ff6b10d
|
@ -54,7 +54,7 @@ Rect rect_add(Rect a, Rect b) {
|
||||||
*/
|
*/
|
||||||
__attribute__ ((pure)) bool name_is_digits(const char *name) {
|
__attribute__ ((pure)) bool name_is_digits(const char *name) {
|
||||||
/* positive integers and zero are interpreted as numbers */
|
/* positive integers and zero are interpreted as numbers */
|
||||||
for (int i = 0; i < strlen(name); i++)
|
for (size_t i = 0; i < strlen(name); i++)
|
||||||
if (!isdigit(name[i]))
|
if (!isdigit(name[i]))
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue