Remove unsigned/signed compile warning.

This commit is contained in:
Cary R 2009-09-24 11:29:46 -07:00 committed by Stephen Williams
parent b0d5a3b8a2
commit 8d2913ac97
1 changed files with 1 additions and 1 deletions

View File

@ -737,7 +737,7 @@ bool crstring_test(const char*str)
if (tp == 0) return false; if (tp == 0) return false;
if (tp[1] != 0) return false; if (tp[1] != 0) return false;
if ((strspn(str+3, "0123456789abcdefmg")+3) != (tp - str)) if ((strspn(str+3, "0123456789abcdefmg")+3) != (size_t)(tp - str))
return false; return false;
return true; return true;