From c692f2e740a3d3f1165cbd8ba16b65ed9b923056 Mon Sep 17 00:00:00 2001 From: Adam Ierymenko Date: Thu, 13 Jul 2017 16:31:16 -0700 Subject: Fix for new identity generation bug. --- node/Utils.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'node/Utils.hpp') diff --git a/node/Utils.hpp b/node/Utils.hpp index 8f61d396..87584fcf 100644 --- a/node/Utils.hpp +++ b/node/Utils.hpp @@ -148,7 +148,7 @@ public: static inline char *hex(const void *d,unsigned int l,char *s) { - char *save = s; + char *const save = s; for(unsigned int i=0;i(d)[i]; *(s++) = HEXCHARS[b >> 4]; -- cgit v1.2.3