diff options
| author | Alexander Karatarakis <alkarata@microsoft.com> | 2016-11-17 15:20:18 -0800 |
|---|---|---|
| committer | Alexander Karatarakis <alkarata@microsoft.com> | 2016-11-17 15:20:18 -0800 |
| commit | a9223bd8df10483c9e5497c55c99fdf26cd2a6c2 (patch) | |
| tree | a40bef26084ee90dab02a106331e606ca8ddbb02 | |
| parent | a7af1a727ea2631f7ba7373f6f0c8336881a3dde (diff) | |
| download | vcpkg-a9223bd8df10483c9e5497c55c99fdf26cd2a6c2.tar.gz vcpkg-a9223bd8df10483c9e5497c55c99fdf26cd2a6c2.zip | |
[coff] Variable rename
| -rw-r--r-- | toolsrc/src/coff_file_reader.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/toolsrc/src/coff_file_reader.cpp b/toolsrc/src/coff_file_reader.cpp index db8524faa..c6bfc33d2 100644 --- a/toolsrc/src/coff_file_reader.cpp +++ b/toolsrc/src/coff_file_reader.cpp @@ -195,8 +195,8 @@ namespace vcpkg { namespace COFFFileReader { static const size_t ALIGNMENT_SIZE = 2; - const fpos_t new_offset = align_to(member_size, ALIGNMENT_SIZE); - fs.seekg(new_offset, ios_base::cur); + const fpos_t advance_by = align_to(member_size, ALIGNMENT_SIZE); + fs.seekg(advance_by, ios_base::cur); } static void read_and_verify_archive_file_signature(fstream& fs) |
