diff options
author | Littleboy | 2013-09-11 20:38:57 -0400 |
---|---|---|
committer | Littleboy | 2013-09-11 21:22:07 -0400 |
commit | 1e9fb123647c43e3895eacf2beca7ee09be2ae57 (patch) | |
tree | 6b97992cb65e3049a96b165a2f1a426376dafa04 /devtools/extract_mort | |
parent | 8b56d0792cace06693b18af3fe848f66434fc4cd (diff) | |
download | scummvm-rg350-1e9fb123647c43e3895eacf2beca7ee09be2ae57.tar.gz scummvm-rg350-1e9fb123647c43e3895eacf2beca7ee09be2ae57.tar.bz2 scummvm-rg350-1e9fb123647c43e3895eacf2beca7ee09be2ae57.zip |
DEVTOOLS: Fix warning in extract_mort
Diffstat (limited to 'devtools/extract_mort')
-rw-r--r-- | devtools/extract_mort/extract_mort.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
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; } |