diff options
Diffstat (limited to 'devtools/extract_mort/extract_mort.cpp')
| -rw-r--r-- | devtools/extract_mort/extract_mort.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/devtools/extract_mort/extract_mort.cpp b/devtools/extract_mort/extract_mort.cpp index 159309c0fa..a52458f9b2 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); + uint32 position = ftell(f); fseek (f, 0, SEEK_END); - int end = ftell (f); - fseek (f, pos, SEEK_SET); + uint32 end = ftell(f); + fseek (f, position, SEEK_SET); return end; } |
