Indentation cosmetics

This commit is contained in:
Berke Viktor 2012-11-04 06:10:59 +01:00
parent 3c5284f19d
commit 82031ed6d4
1 changed files with 6 additions and 6 deletions

View File

@ -254,14 +254,14 @@ file_part (char *file)
{
switch (*file)
{
case 0:
return (filepart);
case '/':
case 0:
return (filepart);
case '/':
#ifdef WIN32
case '\\':
case '\\':
#endif
filepart = file + 1;
break;
filepart = file + 1;
break;
}
file++;
}