From 39ce7bc7ff5d4f917e4bf1e870d27a774a6bf25d Mon Sep 17 00:00:00 2001 From: Eugene Sandulenko Date: Mon, 5 Sep 2016 08:48:51 +0200 Subject: DEVTOOLS: Fix warnings --- devtools/create_titanic/file.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'devtools/create_titanic/file.h') diff --git a/devtools/create_titanic/file.h b/devtools/create_titanic/file.h index 4580e83b19..5ce45a6b9d 100644 --- a/devtools/create_titanic/file.h +++ b/devtools/create_titanic/file.h @@ -52,11 +52,11 @@ public: _f = fopen(filename, (mode == kFileReadMode) ? "rb" : "wb+"); return (_f != NULL); } - bool open(const byte *data, uint size) { + bool open(const byte *data, uint size_) { close(); _f = nullptr; _memPtr = data; - _size = size; + _size = size_; return true; } -- cgit v1.2.3