2006-12-12 Ralf Corsépius <ralf.corsepius@rtems.org>

* shared/irq/idt.c: unsigned limits to match with
	  i386_get_info_from_IDTR.
This commit is contained in:
Ralf Corsepius
2006-12-12 10:43:30 +00:00
parent 0b933d6a03
commit 34e7be2b4f
2 changed files with 6 additions and 1 deletions

View File

@@ -1,3 +1,8 @@
2006-12-12 Ralf Corsépius <ralf.corsepius@rtems.org>
* shared/irq/idt.c: unsigned limits to match with
i386_get_info_from_IDTR.
2006-12-02 Ralf Corsépius <ralf.corsepius@rtems.org>
* configure.ac: New BUG-REPORT address.

View File

@@ -42,7 +42,7 @@ rtems_raw_irq_hdl get_hdl_from_vector(rtems_vector_offset index)
{
uint32_t hdl;
interrupt_gate_descriptor* idt_entry_tbl;
uint32_t limit;
unsigned limit;
i386_get_info_from_IDTR (&idt_entry_tbl, &limit);