FbTk/StringUtil.cc: Don't return mid-routine.
Prep for Windows dummy prefix code.
This commit is contained in:
parent
25d04827b5
commit
65cb53b685
1 changed files with 3 additions and 2 deletions
|
@ -184,8 +184,9 @@ string expandFilename(const string &filename) {
|
|||
// copy from the character after '~'
|
||||
retval += static_cast<const char *>(filename.c_str() + pos + 1);
|
||||
}
|
||||
} else
|
||||
return filename; //return unmodified value
|
||||
} else {
|
||||
retval = filename; //return unmodified value
|
||||
}
|
||||
|
||||
return retval;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue