diff --git a/ChangeLog b/ChangeLog index f79dc30e2..221c561d9 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2000-03-29 Richard Frith-Macdonald + + * Source/NSUserDefaults.m: typo reported by karl@nfox.com fixed. + 2000-03-28 Richard Frith-Macdonald * Source/NSDictionary.m: Fix to avoid crash on being asked to init diff --git a/Source/NSUserDefaults.m b/Source/NSUserDefaults.m index 71a16100c..c6cadd343 100644 --- a/Source/NSUserDefaults.m +++ b/Source/NSUserDefaults.m @@ -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);