aboutsummaryrefslogtreecommitdiffstats
path: root/src/grt/grt-waves.adb
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2022-05-15 05:23:58 +0200
committerTristan Gingold <tgingold@free.fr>2022-05-15 05:23:58 +0200
commit511075ef4fee902e256551cb31b913de569016f3 (patch)
treec6dade191fb4bbbd3371090854cb784334ae2fc7 /src/grt/grt-waves.adb
parent54503976a4e2241fea70c4d37d12fd85f06eaf59 (diff)
downloadghdl-511075ef4fee902e256551cb31b913de569016f3.tar.gz
ghdl-511075ef4fee902e256551cb31b913de569016f3.tar.bz2
ghdl-511075ef4fee902e256551cb31b913de569016f3.zip
grt: simplifies grt-readline, adjust casing
Diffstat (limited to 'src/grt/grt-waves.adb')
-rw-r--r--src/grt/grt-waves.adb4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/grt/grt-waves.adb b/src/grt/grt-waves.adb
index a513ef010..eb0f0a898 100644
--- a/src/grt/grt-waves.adb
+++ b/src/grt/grt-waves.adb
@@ -365,7 +365,7 @@ package body Grt.Waves is
if L = R then
return 0;
end if;
- return Strcmp (Ls, Rs);
+ return strcmp (Ls, Rs);
end Str_Compare;
procedure Disp_Str_Avl (N : AVL_Nid) is
@@ -442,7 +442,7 @@ package body Grt.Waves is
H := Str_Table.Last;
loop
M := (L + H) / 2;
- Diff := Strcmp (Str, Str_Table.Table (M));
+ Diff := strcmp (Str, Str_Table.Table (M));
if Diff = 0 then
return M;
elsif Diff < 0 then