Yet more coding style fixes.

This commit is contained in:
Andreas Kling 2018-12-03 01:38:22 +01:00
parent f31e1ceab0
commit aff89d2fd7
Notes: sideshowbarker 2024-07-19 16:08:58 +09:00
18 changed files with 197 additions and 199 deletions

View file

@ -237,7 +237,7 @@ int main(int c, char** v)
RetainPtr<FS> makeFileSystem(const char* imagePath)
{
auto fsImage = FileBackedDiskDevice::create(imagePath, 512);
if (!fsImage->isValid()) {
if (!fsImage->is_valid()) {
fprintf(stderr, "Failed to open fs image file '%s'\n", imagePath);
exit(1);
}