From 238e5c7052e83a358f0230f1b155ae123da27647 Mon Sep 17 00:00:00 2001 From: Tim Hughes Date: Sat, 1 Mar 2014 16:54:35 +0000 Subject: Fixed implicit type conversions. --- hexPrefix.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'hexPrefix.cpp') diff --git a/hexPrefix.cpp b/hexPrefix.cpp index 10b839a7..b8bc1f48 100644 --- a/hexPrefix.cpp +++ b/hexPrefix.cpp @@ -46,7 +46,7 @@ public: cnote << i.first; bytes v; for (auto& i: o["seq"].get_array()) - v.push_back(i.get_int()); + v.push_back((byte)i.get_int()); auto e = hexPrefixEncode(v, o["term"].get_bool()); if (!o["out"].is_null() && o["out"].get_str() != asHex(e)) { -- cgit