Fix typo causing atapi drive type misreport.
All atapi drives were reported as "Device" instead of "CD-Rom/DVD-Rom".
diff --git a/src/ata.c b/src/ata.c
index 5eefd32..adf3929 100644
--- a/src/ata.c
+++ b/src/ata.c
@@ -679,7 +679,7 @@
u8 slave = driveid % 2;
printf("ata%d-%d: %s ATAPI-%d %s\n", channel, slave
, ATA.devices[driveid].model, ATA.devices[driveid].version
- , (ATA.devices[driveid].type == ATA_DEVICE_CDROM
+ , (ATA.devices[driveid].device == ATA_DEVICE_CDROM
? "CD-Rom/DVD-Rom" : "Device"));
return 0;