about summary refs log tree commit diff
path: root/others/volume1/clib.pas
diff options
context:
space:
mode:
Diffstat (limited to 'others/volume1/clib.pas')
-rw-r--r--others/volume1/clib.pas10
1 files changed, 5 insertions, 5 deletions
diff --git a/others/volume1/clib.pas b/others/volume1/clib.pas
index ee74243..964aa17 100644
--- a/others/volume1/clib.pas
+++ b/others/volume1/clib.pas
@@ -148,14 +148,14 @@ interface
 implementation
 
   procedure qsort(var a : intar);
-    procedure sort(l, r: int64);
+    procedure sort(l, h: int64);
       var
         i, j, x, y: int64;
 
       begin
         i := l;
-        j := r;
-        x := a[(l + r) div 2];
+        j := h;
+        x := a[(l + h) div 2];
 
         repeat
           while a[i] < x do
@@ -175,8 +175,8 @@ implementation
 
         if l < j then
           sort(l, j);
-        if i < r then
-          sort(i, r)
+        if i < h then
+          sort(i, h)
       end;
 
     begin