From 1e9fb123647c43e3895eacf2beca7ee09be2ae57 Mon Sep 17 00:00:00 2001 From: Littleboy Date: Wed, 11 Sep 2013 20:38:57 -0400 Subject: DEVTOOLS: Fix warning in extract_mort --- devtools/extract_mort/extract_mort.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'devtools') diff --git a/devtools/extract_mort/extract_mort.cpp b/devtools/extract_mort/extract_mort.cpp index 159309c0fa..4346f1f4bf 100644 --- a/devtools/extract_mort/extract_mort.cpp +++ b/devtools/extract_mort/extract_mort.cpp @@ -104,10 +104,10 @@ public: return ftell(f); } uint32 size() { - int pos = ftell(f); + int position = ftell(f); fseek (f, 0, SEEK_END); int end = ftell (f); - fseek (f, pos, SEEK_SET); + fseek (f, position, SEEK_SET); return end; } -- cgit v1.2.3