STYLE: Remove trailing whitespaces

This commit is contained in:
Mathieu Malaterre 2006-03-10 13:34:41 -05:00
parent f90e754100
commit 509e383aac
1 changed files with 36 additions and 37 deletions

View File

@ -1662,7 +1662,7 @@ unsigned long SystemTools::FileLength(const char* filename)
int SystemTools::Strucmp(const char *s1, const char *s2) int SystemTools::Strucmp(const char *s1, const char *s2)
{ {
// lifted from Graphvis http://www.graphviz.org // lifted from Graphvis http://www.graphviz.org
while ((*s1 != '\0') while ((*s1 != '\0')
&& (tolower(*s1) == tolower(*s2))) && (tolower(*s1) == tolower(*s2)))
{ {
@ -1671,7 +1671,6 @@ int SystemTools::Strucmp(const char *s1, const char *s2)
} }
return tolower(*s1) - tolower(*s2); return tolower(*s1) - tolower(*s2);
} }
// return file's modified time // return file's modified time