mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-22 16:33:29 +00:00
Fix typo
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@6396 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
126f4a14dc
commit
6b01a5a050
2 changed files with 5 additions and 1 deletions
|
@ -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
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue