aboutsummaryrefslogtreecommitdiff
path: root/engines/cge/fileio.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/cge/fileio.cpp')
-rw-r--r--engines/cge/fileio.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/cge/fileio.cpp b/engines/cge/fileio.cpp
index b2761f33be..e196a66d26 100644
--- a/engines/cge/fileio.cpp
+++ b/engines/cge/fileio.cpp
@@ -105,7 +105,7 @@ IoBuf::IoBuf(Crypt *crypt)
_lim(0) {
debugC(1, kCGEDebugFile, "IoBuf::IoBuf(crypt)");
- _buff = (uint8 *) malloc(sizeof(uint8) * kBufferSize);
+ _buff = (uint8 *)malloc(sizeof(uint8) * kBufferSize);
assert(_buff != NULL);
}
@@ -116,7 +116,7 @@ IoBuf::IoBuf(const char *name, Crypt *crypt)
_lim(0) {
debugC(1, kCGEDebugFile, "IoBuf::IoBuf(%s, crypt)", name);
- _buff = (uint8 *) malloc(sizeof(uint8) * kBufferSize);
+ _buff = (uint8 *)malloc(sizeof(uint8) * kBufferSize);
assert(_buff != NULL);
}