Commit e3aca522 by John David Anglin Committed by John David Anglin

re PR ada/46350 (s-taprop.adb:891:40: warning: redundant conversion, expression…

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
parent 9bed2f0d
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
......
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment