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) switch (*file)
{ {
case 0: case 0:
return (filepart); return (filepart);
case '/': case '/':
#ifdef WIN32 #ifdef WIN32
case '\\': case '\\':
#endif #endif
filepart = file + 1; filepart = file + 1;
break; break;
} }
file++; file++;
} }