summaryrefslogtreecommitdiff
path: root/src/remote.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/remote.cc')
-rw-r--r--src/remote.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/remote.cc b/src/remote.cc
index d22ee6f8..0592d0a3 100644
--- a/src/remote.cc
+++ b/src/remote.cc
@@ -91,8 +91,8 @@ public:
write<uint32_t>(map.size());
for (auto& val : map)
{
- write(val.first);
- write(val.second);
+ write(val.key);
+ write(val.value);
}
}