parser: minor.

This commit is contained in:
Christopher Jeffrey 2017-01-26 01:48:54 -08:00
parent 67e6c8d768
commit bae2aa33dd
No known key found for this signature in database
GPG Key ID: 8962AB9DE6666BBD

View File

@ -103,7 +103,7 @@ Parser.prototype.parse = function parse(data) {
if (checksum !== this.header.checksum) {
this.waiting = 24;
this.header = null;
this.error('Invalid checksum: %d.', util.hex32(checksum));
this.error('Invalid checksum: %s.', util.hex32(checksum));
return;
}