We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5398c25 commit f977494Copy full SHA for f977494
lib/device/rs232/disk.cpp
@@ -39,9 +39,9 @@ rs232Disk::rs232Disk()
39
// Read disk data and send to computer
40
void rs232Disk::rs232_read()
41
{
42
- Debug_printf("disk READ %u\n", cmdFrame.aux);
+ Debug_printf("disk READ %lu\n", cmdFrame.aux);
43
44
- if (_disk == nullptr)
+ if (_disk == nullptr)
45
46
rs232_error();
47
return;
lib/device/rs232/fuji.cpp
@@ -104,7 +104,7 @@ void rs232Fuji::rs232_status()
104
105
char ret[4] = {0};
106
107
- Debug_printf("Status for what? %08x\n", cmdFrame.aux);
+ Debug_printf("Status for what? %08lx\n", cmdFrame.aux);
108
bus_to_computer((uint8_t *)ret, sizeof(ret), false);
109
}
110
0 commit comments