| Index: ui/message_center/cocoa/status_item_view.mm
|
| diff --git a/ui/message_center/cocoa/status_item_view.mm b/ui/message_center/cocoa/status_item_view.mm
|
| index 5e1002f9bfc4fe417efad5fbbd381f33bd2bfe46..c0efa075d1f6bdf2e8ae71b3169ef46f368f2377 100644
|
| --- a/ui/message_center/cocoa/status_item_view.mm
|
| +++ b/ui/message_center/cocoa/status_item_view.mm
|
| @@ -177,7 +177,7 @@ const CGFloat kUnreadCountMinY = 4;
|
| if (unreadCount_ > 9)
|
| count = @"9+";
|
| else
|
| - count = [NSString stringWithFormat:@"%"PRIuS, unreadCount_];
|
| + count = [NSString stringWithFormat:@"%" PRIuS, unreadCount_];
|
|
|
| NSColor* fontColor = [self shouldHighlight] ? [NSColor whiteColor]
|
| : [NSColor blackColor];
|
|
|