git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@6396 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-MacDonald 2000-03-29 07:00:28 +00:00
parent 126f4a14dc
commit 6b01a5a050
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2000-03-29 Richard Frith-Macdonald <rfm@gnu.org>
* Source/NSUserDefaults.m: typo reported by karl@nfox.com fixed.
2000-03-28 Richard Frith-Macdonald <rfm@gnu.org>
* Source/NSDictionary.m: Fix to avoid crash on being asked to init

View file

@ -311,7 +311,7 @@ static NSString *pathForUser(NSString *user)
path = [home stringByAppendingPathComponent: GNU_UserDefaultsPrefix];
if ([mgr fileExistsAtPath: path isDirectory: &isDir] == NO)
{
NSLog(@"Directory '%'@ does not exist - creating it", path);
NSLog(@"Directory '%@' does not exist - creating it", path);
if ([mgr createDirectoryAtPath: path attributes: nil] == NO)
{
NSLog(@"Unable to create user GNUstep directory '%@'", path);