Skip to content

Commit

Permalink
Fix warning
Browse files Browse the repository at this point in the history
no-tn-check

Use record name in constant to avoid
warning: component "SERVER" of type access to "HTTP" is uninitialized
  • Loading branch information
anisimkov authored and TurboGit committed Oct 6, 2021
1 parent e00b68a commit 1a7712c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/aws-server.ads
Original file line number Diff line number Diff line change
Expand Up @@ -536,7 +536,7 @@ private
end record;

package Line_Attribute is new Ada.Task_Attributes
(Line_Attribute_Record, (Line => 1, others => <>));
(Line_Attribute_Record, Line_Attribute_Record'(Line => 1, others => <>));
-- A line specific attribute

procedure Null_Procedure is null;
Expand Down

0 comments on commit 1a7712c

Please sign in to comment.