diff options
Diffstat (limited to 'src/grt/grt-wave_opt.adb')
-rw-r--r-- | src/grt/grt-wave_opt.adb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/grt/grt-wave_opt.adb b/src/grt/grt-wave_opt.adb index 0a6059adc..65391e05d 100644 --- a/src/grt/grt-wave_opt.adb +++ b/src/grt/grt-wave_opt.adb @@ -49,7 +49,7 @@ package body Grt.Wave_Opt is procedure Print_Context (Element : Elem_Acc; Severity : Severity_Type) is begin Print_Context - (Element.Path_Context.Lineno, Element.Column, Severity); + (Element.Lineno, Element.Column, Severity); end Print_Context; procedure Error_Context (Msg : String; @@ -69,7 +69,7 @@ package body Grt.Wave_Opt is (Msg : String; Element : Elem_Acc; Severity : Severity_Type := Error) is begin Error_Context - (Msg, Element.Path_Context.Lineno, Element.Column, Severity); + (Msg, Element.Lineno, Element.Column, Severity); end Error_Context; end Grt.Wave_Opt; |