STYLE: Remove trailing whitespaces
This commit is contained in:
parent
f90e754100
commit
509e383aac
|
@ -1662,7 +1662,7 @@ unsigned long SystemTools::FileLength(const char* filename)
|
|||
|
||||
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')
|
||||
&& (tolower(*s1) == tolower(*s2)))
|
||||
{
|
||||
|
@ -1671,7 +1671,6 @@ int SystemTools::Strucmp(const char *s1, const char *s2)
|
|||
}
|
||||
|
||||
return tolower(*s1) - tolower(*s2);
|
||||
|
||||
}
|
||||
|
||||
// return file's modified time
|
||||
|
|
Loading…
Reference in New Issue