X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=low-can-binding%2Futils%2Fconverter.cpp;h=56f3a449d90fd0d80df9872341939a4101460744;hb=refs%2Fchanges%2F64%2F23464%2F3;hp=6c9cedbb415e866d1a71b8e7688c9cb2b163e817;hpb=2dcfd4d0faa9699a4a32af1c39be674dc2856f41;p=apps%2Fagl-service-can-low-level.git diff --git a/low-can-binding/utils/converter.cpp b/low-can-binding/utils/converter.cpp index 6c9cedbb..56f3a449 100644 --- a/low-can-binding/utils/converter.cpp +++ b/low-can-binding/utils/converter.cpp @@ -32,6 +32,7 @@ std::string converter_t::to_hex(const uint8_t data[], const size_t length) { std::stringstream stream; stream << std::hex << std::setfill('0'); + stream << "0x"; for(int i = 0; i < length; i++) stream << std::setfill('0') << std::setw(2) << std::hex << ((int) data[i]);