re PR ada/46350 (s-taprop.adb:891:40: warning: redundant conversion, expression is of type "Interrupt_ID")

PR ada/46350
	* s-taprop-hpux-dce.adb (Abort_Task): Remove unnecessary cast.

From-SVN: r176296
This commit is contained in:
John David Anglin 2011-07-14 23:22:17 +00:00 committed by John David Anglin
parent 9bed2f0d15
commit e3aca52231
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2011-07-14 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
PR ada/46350
* s-taprop-hpux-dce.adb (Abort_Task): Remove unnecessary cast.
2011-07-14 Florian Weimer <fw@deneb.enyo.de>
PR ada/48711

View File

@ -888,8 +888,7 @@ package body System.Task_Primitives.Operations is
if T.Common.State = Interrupt_Server_Blocked_On_Event_Flag then
System.Interrupt_Management.Operations.Interrupt_Self_Process
(System.Interrupt_Management.Interrupt_ID
(PIO.Get_Interrupt_ID (T)));
(PIO.Get_Interrupt_ID (T));
end if;
end Abort_Task;