diff options
author | Piotr Trojanek <trojanek@adacore.com> | 2021-01-19 11:59:57 +0100 |
---|---|---|
committer | Pierre-Marie de Rodat <derodat@adacore.com> | 2021-05-06 03:51:29 -0400 |
commit | 6068795883e8aacc8b0157e19610d34c0ab11ffa (patch) | |
tree | f0a0e2c23f5000ec173bed58cae81bf7a8bc0f28 /gcc | |
parent | d07cc0d1262366e4b1e6f00ea226b5b9a891b445 (diff) | |
download | gcc-6068795883e8aacc8b0157e19610d34c0ab11ffa.zip gcc-6068795883e8aacc8b0157e19610d34c0ab11ffa.tar.gz gcc-6068795883e8aacc8b0157e19610d34c0ab11ffa.tar.bz2 |
[Ada] Remove unused initial value in Read_Library_Info_From_Full
gcc/ada/
* osint.adb (Read_Library_Info_From_Full): Cleanup unused
initial value.
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ada/osint.adb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/ada/osint.adb b/gcc/ada/osint.adb index 85b631f..d47eaa5 100644 --- a/gcc/ada/osint.adb +++ b/gcc/ada/osint.adb @@ -2564,7 +2564,7 @@ package body Osint is -- Read data from the file declare - Actual_Len : Integer := 0; + Actual_Len : Integer; Lo : constant Text_Ptr := 0; -- Low bound for allocated text buffer |