aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--common/file.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/common/file.h b/common/file.h
index 48edc1ef17..ead42c0788 100644
--- a/common/file.h
+++ b/common/file.h
@@ -72,8 +72,8 @@ public:
uint32 size() const;
const char *name() const { return _name.c_str(); }
void seek(int32 offs, int whence = SEEK_SET);
- uint32 read(void *ptr, uint32 size);
- uint32 write(const void *ptr, uint32 size);
+ uint32 read(void *dataPtr, uint32 dataSize);
+ uint32 write(const void *dataPtr, uint32 dataSize);
};
#endif