summaryrefslogtreecommitdiffstats
path: root/src/borg/algorithms/zstd/lib/dictBuilder/divsufsort.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/borg/algorithms/zstd/lib/dictBuilder/divsufsort.c')
-rw-r--r--src/borg/algorithms/zstd/lib/dictBuilder/divsufsort.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/borg/algorithms/zstd/lib/dictBuilder/divsufsort.c b/src/borg/algorithms/zstd/lib/dictBuilder/divsufsort.c
index ead922044..a2870fb3b 100644
--- a/src/borg/algorithms/zstd/lib/dictBuilder/divsufsort.c
+++ b/src/borg/algorithms/zstd/lib/dictBuilder/divsufsort.c
@@ -1576,7 +1576,7 @@ note:
/* Construct the inverse suffix array of type B* suffixes using trsort. */
trsort(ISAb, SA, m, 1);
- /* Set the sorted order of tyoe B* suffixes. */
+ /* Set the sorted order of type B* suffixes. */
for(i = n - 1, j = m, c0 = T[n - 1]; 0 <= i;) {
for(--i, c1 = c0; (0 <= i) && ((c0 = T[i]) >= c1); --i, c1 = c0) { }
if(0 <= i) {