Ubuntu Pastebin

Paste from slashd at Thu, 19 Oct 2017 14:03:55 +0000

Download as text
1
2
3
4
5
-    char _len = rsp_buff[3];
+    uint8_t _len = rsp_buff[3];
     if (_len > 0)
-      node.setSerial(hw::strip(string(rsp_buff + 4, _len)));
+      node.setSerial(hw::strip(string((char *)rsp_buff + 4, _len)));
Download as text