Fixed a minor static-analysis reported warning.

This commit is contained in:
Ward Fisher 2015-02-23 13:25:35 -07:00
parent 4201d10116
commit cc260fc9aa

View File

@ -123,7 +123,7 @@ static void
rctrim(char* text)
{
char* p = text;
size_t len = strlen(text);
size_t len = 0;
int i;
/* locate first non-trimchar */
for(;*p;p++) {