summaryrefslogtreecommitdiff
path: root/src/remote.cc
diff options
context:
space:
mode:
authorMaxime Coste <mawww@kakoune.org>2018-04-05 08:52:33 +1000
committerMaxime Coste <mawww@kakoune.org>2018-04-05 08:52:33 +1000
commit71a1893a5eeae6d230b07b8f9ee47288655be4f9 (patch)
tree413cc40ce918f4de3ec0432159abd2be90e9f1d6 /src/remote.cc
parent6ee68b5b0896a3b8d1f1ed6b06a99d2b08686a23 (diff)
Fix some trailing spaces and a tab that sneaked into the code base
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 f3dd7d06..b851474f 100644
--- a/src/remote.cc
+++ b/src/remote.cc
@@ -173,7 +173,7 @@ public:
uint32_t size() const
{
- kak_assert(m_write_pos >= header_size);
+ kak_assert(m_write_pos >= header_size);
uint32_t res;
memcpy(&res, m_stream.data() + sizeof(MessageType), sizeof(uint32_t));
return res;
@@ -181,7 +181,7 @@ public:
MessageType type() const
{
- kak_assert(m_write_pos >= header_size);
+ kak_assert(m_write_pos >= header_size);
return *reinterpret_cast<const MessageType*>(m_stream.data());
}