DEVTOOLS: Fix warning in extract_mort

This commit is contained in:
Littleboy
2013-09-11 21:22:07 -04:00
parent 8b56d0792c
commit 1e9fb12364
+2 -2
View File
@@ -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;
}