add formatting to suppress compiler warning

Review URL: https://codereview.appspot.com/5586043

git-svn-id: http://skia.googlecode.com/svn/trunk@3095 2bbb7eff-a529-9590-31e7-b0007b416f81
This commit is contained in:
caryclark@google.com 2012-01-27 16:52:38 +00:00
parent b1caea00d8
commit 78c6ed0a59

View File

@ -8,6 +8,7 @@
#import <Cocoa/Cocoa.h>
#include "SkApplication.h"
int main(int argc, char *argv[]) {
signal(SIGPIPE, SIG_IGN);
NSAutoreleasePool* pool = [[NSAutoreleasePool alloc] init];
@ -16,4 +17,4 @@ int main(int argc, char *argv[]) {
application_term();
[pool release];
return retVal;
}
}