mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-08 02:07:06 -06:00
4.60 beta
This commit is contained in:
committed by
Kornel Lesiński
parent
173c07e166
commit
c10e6b16f6
6
C/Sort.c
6
C/Sort.c
@@ -1,5 +1,5 @@
|
||||
/* Sort.c -- Sort functions
|
||||
2008-03-13
|
||||
2008-08-17
|
||||
Igor Pavlov
|
||||
Public domain */
|
||||
|
||||
@@ -27,7 +27,7 @@ void HeapSort(UInt32 *p, UInt32 size)
|
||||
UInt32 k = i;
|
||||
HeapSortDown(p, k, size, temp)
|
||||
}
|
||||
while(--i != 0);
|
||||
while (--i != 0);
|
||||
}
|
||||
/*
|
||||
do
|
||||
@@ -82,7 +82,7 @@ void HeapSortRef(UInt32 *p, UInt32 *vals, UInt32 size)
|
||||
UInt32 temp = p[i];
|
||||
HeapSortRefDown(p, vals, i, size, temp);
|
||||
}
|
||||
while(--i != 0);
|
||||
while (--i != 0);
|
||||
}
|
||||
do
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user