| Index: chrome/browser/ui/cocoa/about_ipc_controller.mm
|
| diff --git a/chrome/browser/ui/cocoa/about_ipc_controller.mm b/chrome/browser/ui/cocoa/about_ipc_controller.mm
|
| index 7a3654aff764e58e55ee113f45ef27cb4efee25b..cea1dda152680bfc7e3892fa861361df3b20129a 100644
|
| --- a/chrome/browser/ui/cocoa/about_ipc_controller.mm
|
| +++ b/chrome/browser/ui/cocoa/about_ipc_controller.mm
|
| @@ -185,7 +185,8 @@ AboutIPCController* gSharedController = nil;
|
| NSUInteger count = [[dataController_ arrangedObjects] count];
|
| // Uncomment if you want scroll-to-end behavior... but seems expensive.
|
| // [tableView_ scrollRowToVisible:count-1];
|
| - [eventCount_ setStringValue:[NSString stringWithFormat:@"%d", count]];
|
| + [eventCount_ setStringValue:[NSString stringWithFormat:@"%ld",
|
| + static_cast<long>(count)]];
|
| }
|
|
|
| - (void)setDisplayViewMessages:(BOOL)display {
|
|
|