diff options
-rw-r--r-- | chrome/common/chrome_paths_mac.mm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/common/chrome_paths_mac.mm b/chrome/common/chrome_paths_mac.mm index f4ad3d5..618dd4f 100644 --- a/chrome/common/chrome_paths_mac.mm +++ b/chrome/common/chrome_paths_mac.mm @@ -21,7 +21,7 @@ bool GetDefaultUserDataDirectory(FilePath* result) { if ([dirs count] && result) { NSString* base = [dirs objectAtIndex:0]; #if defined(GOOGLE_CHROME_BUILD) - base = [base stringByAppendingPathComponent@"Google"]; + base = [base stringByAppendingPathComponent:@"Google"]; NSString* tail = @"Chrome"; #else NSString* tail = @"Chromium"; |