Tidyups and fix in mingw drive handling

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@20911 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
CaS 2005-03-15 09:30:56 +00:00
parent 81aaeead0c
commit 62bd7f6782
4 changed files with 32 additions and 6 deletions

View file

@ -723,8 +723,9 @@ static NSString *pathForUser(NSString *user)
*/
- (id) initWithUser: (NSString*)userName
{
NSString *path = pathForUser(userName);
NSString *path;
path = pathForUser(userName);
return [self initWithContentsOfFile: path];
}