MACOSX: Fix indention

This commit is contained in:
Max Horn 2011-06-03 18:25:40 +02:00
parent aec2ea9661
commit 59646053a3

View file

@ -88,15 +88,15 @@ bool OSystem_MacOSX::displayLogFile() {
if (_logFilePath.empty())
return false;
FSRef ref;
OSStatus err;
FSRef ref;
OSStatus err;
err = FSPathMakeRef((const UInt8 *)_logFilePath.c_str(), &ref, NULL);
if (err == noErr) {
err = LSOpenFSRef(&ref, NULL);
}
err = FSPathMakeRef((const UInt8 *)_logFilePath.c_str(), &ref, NULL);
if (err == noErr) {
err = LSOpenFSRef(&ref, NULL);
}
return err != noErr;
return err != noErr;
}
#endif