Warnings removal

This commit is contained in:
Jeremy Soller 2016-09-01 11:14:47 -06:00
parent 543ef3d96f
commit 53c71d9183
5 changed files with 10 additions and 12 deletions

View file

@ -19,7 +19,7 @@ interrupt!(pit, {
let low = io::inb(0x40);
let high = io::inb(0x40);
let count = (high as u16) << 8 | (low as u16);
let missed = 5370 - count;
let _missed = 5370 - count;
master_ack();
});