Fix comparison type mismatch warnings

Signed-off-by: Gary Bisson <gary.bisson@boundarydevices.com>
This commit is contained in:
Gary Bisson
2020-05-28 20:54:37 +02:00
committed by Oliver Hartkopp
parent 2c87dcf468
commit 46895a41c5
11 changed files with 14 additions and 14 deletions
+1 -1
View File
@@ -138,7 +138,7 @@ void canfd_asc(struct canfd_frame *cf, int devno, int mtu, FILE *outfile)
fprintf(outfile, "%2d", dlen);
for (i = 0; i < dlen; i++) {
for (i = 0; i < (int)dlen; i++) {
fprintf(outfile, " %02X", cf->data[i]);
}