aboutsummaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorMax Horn2005-05-06 13:10:58 +0000
committerMax Horn2005-05-06 13:10:58 +0000
commit83d81666962ae879e969ae2879f1a3bdd0dd6307 (patch)
treecf264d5d91017b063a6190e5592bea65e3610c04 /common
parent6e06194dd9820a99b3a20189a48de4375a420803 (diff)
downloadscummvm-rg350-83d81666962ae879e969ae2879f1a3bdd0dd6307.tar.gz
scummvm-rg350-83d81666962ae879e969ae2879f1a3bdd0dd6307.tar.bz2
scummvm-rg350-83d81666962ae879e969ae2879f1a3bdd0dd6307.zip
Fix another doyxgen warning
svn-id: r17933
Diffstat (limited to 'common')
-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