X Tutup
Skip to content

Commit 1e9fb12

Browse files
committed
DEVTOOLS: Fix warning in extract_mort
1 parent 8b56d07 commit 1e9fb12

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

devtools/extract_mort/extract_mort.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,10 +104,10 @@ class File {
104104
return ftell(f);
105105
}
106106
uint32 size() {
107-
int pos = ftell(f);
107+
int position = ftell(f);
108108
fseek (f, 0, SEEK_END);
109109
int end = ftell (f);
110-
fseek (f, pos, SEEK_SET);
110+
fseek (f, position, SEEK_SET);
111111

112112
return end;
113113
}

0 commit comments

Comments
 (0)
X Tutup