diff options
author | Grant Limberg <glimberg@gmail.com> | 2016-05-14 13:25:40 -0700 |
---|---|---|
committer | Grant Limberg <glimberg@gmail.com> | 2016-05-14 13:25:40 -0700 |
commit | efdbd6326fc06da6daca1c2969959de2b8f4d5b3 (patch) | |
tree | 5e6a4ec857a6c3126b5464d47eb1953fce38ce28 | |
parent | 25c3d3a45218ff0cfcb8da5e9200e9518dd03a5b (diff) | |
download | infinitytier-efdbd6326fc06da6daca1c2969959de2b8f4d5b3.tar.gz infinitytier-efdbd6326fc06da6daca1c2969959de2b8f4d5b3.zip |
compiling with C++11 requires a space between string literals
-rw-r--r-- | node/NetworkConfigRequestMetaData.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/node/NetworkConfigRequestMetaData.hpp b/node/NetworkConfigRequestMetaData.hpp index 831ca63a..20fd80f1 100644 --- a/node/NetworkConfigRequestMetaData.hpp +++ b/node/NetworkConfigRequestMetaData.hpp @@ -85,7 +85,7 @@ public: * these maintains backward compatibility with old controllers. This * appends a terminating NULL which seperates the old legacy meta-data * from the new packed binary format that we send after. */ - b.appendCString("majv="ZEROTIER_ONE_VERSION_MAJOR_S_HEX"\nminv="ZEROTIER_ONE_VERSION_MINOR_S_HEX"\nrevv="ZEROTIER_ONE_VERSION_REVISION_S_HEX"\n"); + b.appendCString("majv=" ZEROTIER_ONE_VERSION_MAJOR_S_HEX "\nminv=" ZEROTIER_ONE_VERSION_MINOR_S_HEX "\nrevv=" ZEROTIER_ONE_VERSION_REVISION_S_HEX "\n"); b.append((uint16_t)1); // serialization version |