Fix warning on new Ada testcase

gcc/testsuite/
	* gnat.dg/varsize4.adb (Func): Initialize Byte_Read parameter.
This commit is contained in:
Eric Botcazou 2023-11-16 22:41:53 +01:00
parent a671095c20
commit 1c1ee8097c

View file

@ -2,9 +2,10 @@
package body Varsize4 is
function Func (bytes_read : out Natural) return Arr is
function Func (Bytes_Read : out Natural) return Arr is
Ret : Arr := (others => False);
begin
Bytes_Read := 0;
return Ret;
end;