aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/src
diff options
context:
space:
mode:
authorAlexander Karatarakis <alkarata@microsoft.com>2016-11-17 15:20:18 -0800
committerAlexander Karatarakis <alkarata@microsoft.com>2016-11-17 15:20:18 -0800
commita9223bd8df10483c9e5497c55c99fdf26cd2a6c2 (patch)
treea40bef26084ee90dab02a106331e606ca8ddbb02 /toolsrc/src
parenta7af1a727ea2631f7ba7373f6f0c8336881a3dde (diff)
downloadvcpkg-a9223bd8df10483c9e5497c55c99fdf26cd2a6c2.tar.gz
vcpkg-a9223bd8df10483c9e5497c55c99fdf26cd2a6c2.zip
[coff] Variable rename
Diffstat (limited to 'toolsrc/src')
-rw-r--r--toolsrc/src/coff_file_reader.cpp4
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)