Skip to content

Commit f3a784b

Browse files
committed
Fix compilation failure in new GNAT
1 parent 5c9e815 commit f3a784b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/extended/aws-smtp.adb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ package body AWS.SMTP is
8989
-- Add --
9090
---------
9191

92-
procedure Add (Answer : in out Server_Reply; Status : in out SMTP.Status) is
92+
procedure Add (Answer : Server_Reply; Status : in out SMTP.Status) is
9393
begin
9494
Utils.Append_With_Sep
9595
(Status.Reason, Image (Answer), Sep => String'(1 => ASCII.LF));

src/extended/aws-smtp.ads

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ private
177177
function Image (Answer : Server_Reply) return String;
178178
-- Returns the string representation for Answer
179179

180-
procedure Add (Answer : in out Server_Reply; Status : in out SMTP.Status);
180+
procedure Add (Answer : Server_Reply; Status : in out SMTP.Status);
181181
-- Add status code and reason to the list of server's reply
182182

183183
procedure Check_Answer

0 commit comments

Comments
 (0)