diff options
| author | Adam Ierymenko <adam.ierymenko@gmail.com> | 2017-03-16 16:45:11 -0700 |
|---|---|---|
| committer | Adam Ierymenko <adam.ierymenko@gmail.com> | 2017-03-16 16:45:11 -0700 |
| commit | e3feaf3f5d5e519aad33623f730b39b69a7e4fd4 (patch) | |
| tree | 5bef6e9d6cf820c8a14bd2569a92806f8467ed27 | |
| parent | 0daff26fba640f2ef167ad66974dc1c4a6c79c01 (diff) | |
| download | infinitytier-e3feaf3f5d5e519aad33623f730b39b69a7e4fd4.tar.gz infinitytier-e3feaf3f5d5e519aad33623f730b39b69a7e4fd4.zip | |
Warning removal, and dev is now 1.2.1
| -rw-r--r-- | service/SoftwareUpdater.cpp | 4 | ||||
| -rw-r--r-- | version.h | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/service/SoftwareUpdater.cpp b/service/SoftwareUpdater.cpp index 40f49244..2afbc776 100644 --- a/service/SoftwareUpdater.cpp +++ b/service/SoftwareUpdater.cpp @@ -258,14 +258,14 @@ void SoftwareUpdater::handleSoftwareUpdateUserMessage(uint64_t origin,const void default: if (_distLog) { - fprintf(_distLog,"%.10llx WARNING: bad update message verb==%u length==%u (unrecognized verb)" ZT_EOL_S,origin,(unsigned int)v,len); + fprintf(_distLog,"%.10llx WARNING: bad update message verb==%u length==%u (unrecognized verb)" ZT_EOL_S,(unsigned long long)origin,(unsigned int)v,len); fflush(_distLog); } break; } } catch ( ... ) { if (_distLog) { - fprintf(_distLog,"%.10llx WARNING: bad update message verb==%u length==%u (unexpected exception, likely invalid JSON)" ZT_EOL_S,origin,(unsigned int)v,len); + fprintf(_distLog,"%.10llx WARNING: bad update message verb==%u length==%u (unexpected exception, likely invalid JSON)" ZT_EOL_S,(unsigned long long)origin,(unsigned int)v,len); fflush(_distLog); } } @@ -32,7 +32,7 @@ /** * Revision */ -#define ZEROTIER_ONE_VERSION_REVISION 0 +#define ZEROTIER_ONE_VERSION_REVISION 1 /** * Build version |
