aboutsummaryrefslogtreecommitdiffstats
path: root/ortho/mcode/ortho_code_main.adb
diff options
context:
space:
mode:
Diffstat (limited to 'ortho/mcode/ortho_code_main.adb')
-rw-r--r--ortho/mcode/ortho_code_main.adb4
1 files changed, 2 insertions, 2 deletions
diff --git a/ortho/mcode/ortho_code_main.adb b/ortho/mcode/ortho_code_main.adb
index 7454d8f1c..a0e6dc6c6 100644
--- a/ortho/mcode/ortho_code_main.adb
+++ b/ortho/mcode/ortho_code_main.adb
@@ -33,7 +33,7 @@ procedure Ortho_Code_Main
is
Output : String_Acc := null;
type Format_Type is (Format_Coff, Format_Elf);
- Format : Format_Type := Format_Elf;
+ Format : constant Format_Type := Format_Elf;
Fd : File_Descriptor;
First_File : Natural;
@@ -56,7 +56,7 @@ begin
I := 1;
while I <= Argc loop
declare
- Arg : String := Argument (I);
+ Arg : constant String := Argument (I);
begin
if Arg (1) = '-' then
if Arg'Length > 5 and then Arg (1 .. 5) = "--be-" then