os/macosx/macos.m
changeset 2736 3d6487cbbb69
parent 2223 b9564d70ec3d
child 2741 65d4de069014
--- a/os/macosx/macos.m	Sat Dec 10 07:29:31 2005 +0000
+++ b/os/macosx/macos.m	Sat Dec 10 11:16:45 2005 +0000
@@ -15,12 +15,12 @@
 
 void ShowMacAssertDialog ( const char *function, const char *file, const int line, const char *expression )
 {
-	const char *buffer = 
+	const char *buffer =
 			[[NSString stringWithFormat:@"An assertion has failed and OpenTTD must quit.\n%s in %s (line %d)\n\"%s\"\n\nYou should report this error the OpenTTD developers if you think you found a bug.",
 			function, file, line, expression] cStringUsingEncoding:NSASCIIStringEncoding];
 	NSLog(@"%s", buffer);
 	ShowMacDialog( "Assertion Failed", buffer, "Quit" );
-	
+
 	// abort so that a debugger has a chance to notice
 	abort();
 }