1
0
Fork 0

(svn r12847) -Cleanup: Identing and variable scope

release/0.7
peter1138 2008-04-23 11:57:58 +00:00
parent 39a715f1f3
commit fff763b5ce
1 changed files with 32 additions and 32 deletions

View File

@ -108,7 +108,6 @@ StringID FiosGetDescText(const char **path, uint32 *total_free)
* @return a string if we have given a file as a target, otherwise NULL */ * @return a string if we have given a file as a target, otherwise NULL */
char *FiosBrowseTo(const FiosItem *item) char *FiosBrowseTo(const FiosItem *item)
{ {
char *s;
char *path = _fios_path; char *path = _fios_path;
switch (item->type) { switch (item->type) {
@ -118,9 +117,9 @@ char *FiosBrowseTo(const FiosItem *item)
case FIOS_TYPE_DRIVE: sprintf(path, "%c:" PATHSEP, item->title[0]); break; case FIOS_TYPE_DRIVE: sprintf(path, "%c:" PATHSEP, item->title[0]); break;
#endif #endif
case FIOS_TYPE_PARENT: case FIOS_TYPE_PARENT: {
/* Check for possible NULL ptr (not required for UNIXes, but AmigaOS-alikes) */ /* Check for possible NULL ptr (not required for UNIXes, but AmigaOS-alikes) */
s = strrchr(path, PATHSEPCHAR); char *s = strrchr(path, PATHSEPCHAR);
if (s != NULL && s != path) { if (s != NULL && s != path) {
s[0] = '\0'; // Remove last path separator character, so we can go up one level. s[0] = '\0'; // Remove last path separator character, so we can go up one level.
} }
@ -131,6 +130,7 @@ char *FiosBrowseTo(const FiosItem *item)
else if ((s = strrchr(path, ':')) != NULL) s[1] = '\0'; else if ((s = strrchr(path, ':')) != NULL) s[1] = '\0';
#endif #endif
break; break;
}
case FIOS_TYPE_DIR: case FIOS_TYPE_DIR:
strcat(path, item->name); strcat(path, item->name);