aboutsummaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorTorbjörn Andersson2011-10-29 11:23:44 +0200
committerTorbjörn Andersson2011-10-29 11:23:44 +0200
commita01003849208dbfa9364813863b7a2f66a5df023 (patch)
tree48ddbb9ff78f3b2b4cb2e0e72b789bf964dbb41e /common
parentfc632a2b09e24a47e8947908c34b4d4bc6c599b3 (diff)
downloadscummvm-rg350-a01003849208dbfa9364813863b7a2f66a5df023.tar.gz
scummvm-rg350-a01003849208dbfa9364813863b7a2f66a5df023.tar.bz2
scummvm-rg350-a01003849208dbfa9364813863b7a2f66a5df023.zip
JANITORIAL: Remove unnecessary semicolons
Diffstat (limited to 'common')
-rw-r--r--common/macresman.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/common/macresman.cpp b/common/macresman.cpp
index 2b9c68ade9..1317600cb7 100644
--- a/common/macresman.cpp
+++ b/common/macresman.cpp
@@ -110,7 +110,7 @@ bool MacResManager::open(String filename) {
String fullPath = ConfMan.get("path") + "/" + filename + "/..namedfork/rsrc";
FSNode resFsNode = FSNode(fullPath);
if (resFsNode.exists()) {
- SeekableReadStream *macResForkRawStream = resFsNode.createReadStream();;
+ SeekableReadStream *macResForkRawStream = resFsNode.createReadStream();
if (macResForkRawStream && loadFromRawFork(*macResForkRawStream)) {
_baseFileName = filename;
@@ -173,7 +173,7 @@ bool MacResManager::open(FSNode path, String filename) {
String fullPath = path.getPath() + "/" + filename + "/..namedfork/rsrc";
FSNode resFsNode = FSNode(fullPath);
if (resFsNode.exists()) {
- SeekableReadStream *macResForkRawStream = resFsNode.createReadStream();;
+ SeekableReadStream *macResForkRawStream = resFsNode.createReadStream();
if (macResForkRawStream && loadFromRawFork(*macResForkRawStream)) {
_baseFileName = filename;