[Scummvm-git-logs] scummvm master -> 8bc926886c8653b20d7e10980a2e907db392a544
digitall
noreply at scummvm.org
Wed Dec 14 09:32:15 UTC 2022
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
8bc926886c GLK: SCOTT: Fix Misleading Indentation GCC Compiler Warning
Commit: 8bc926886c8653b20d7e10980a2e907db392a544
https://github.com/scummvm/scummvm/commit/8bc926886c8653b20d7e10980a2e907db392a544
Author: D G Turner (digitall at scummvm.org)
Date: 2022-12-14T09:31:41Z
Commit Message:
GLK: SCOTT: Fix Misleading Indentation GCC Compiler Warning
Changed paths:
engines/glk/scott/disk_image.cpp
diff --git a/engines/glk/scott/disk_image.cpp b/engines/glk/scott/disk_image.cpp
index 1b30adb2db4..3a85b322aba 100644
--- a/engines/glk/scott/disk_image.cpp
+++ b/engines/glk/scott/disk_image.cpp
@@ -744,8 +744,8 @@ RawDirEntry *findLargestFileEntry(DiskImage *di) {
DiskImage *diCreateFromData(uint8_t *data, int length) {
DiskImage *di;
- if (data == nullptr)
- return nullptr;
+ if (data == nullptr)
+ return nullptr;
if ((di = new DiskImage) == nullptr) {
return nullptr;
More information about the Scummvm-git-logs
mailing list