Skip to content

Commit

Permalink
Fix evaluation of variables in file name
Browse files Browse the repository at this point in the history
  • Loading branch information
malaise committed Aug 25, 2023
1 parent 8aa5dcc commit a7edd73
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion reposit/trace-loggers.adb
Expand Up @@ -60,7 +60,7 @@ package body Trace.Loggers is
begin
Flow_Is_Stderr := True;
File_Name := As.U.Tus (Output_Flows.Stderr_Name);
Flow.Set (File_Name.Image, Stderr'Access);
Flow.Set (Memory.Eval (File_Name.Image), Stderr'Access);
exception
when Output_Flows.Already_Error =>
-- Stderr is already registered, cannot use the File access provided
Expand Down

0 comments on commit a7edd73

Please sign in to comment.