more return fixes. clang reports.

SVN revision: 56173
This commit is contained in:
Carsten Haitzler 2011-01-16 04:13:37 +00:00
parent 567d9037fe
commit 2ba6051649
1 changed files with 1 additions and 3 deletions

View File

@ -1322,7 +1322,6 @@ _deltaf(char *s, double *val)
s++; s++;
s = _alphaf(s, val); s = _alphaf(s, val);
s++; s++;
return s;
} }
return s; return s;
} }
@ -1440,7 +1439,6 @@ _is_numf(char c)
|| ('.' == c) || ('.' == c)
|| ('+' == c)) || ('+' == c))
return 1; return 1;
else
return 0; return 0;
} }