issues
search
ASCCON
/
DStat
Quickly gather and print directory statistics.
MIT License
1
stars
0
forks
source link
#close 42-directory-uniqueness-redux
#43
Closed
ASCCON
closed
7 months ago
ASCCON
commented
7 months ago
comment
Fixed problem where directory uniqueness checking was screwball.
The main problem was that the
*dir[]
need to be declared as
*dir[x]
. Argh. But, at least it is just for this function and not a global!
Also made several minor enhancements:
j = 0
->
j = i + 1
: Reduced rounds from
x^2
to
sum(1 .. x-1)
.
Remembered to
free(msg)
. :P
Corrected decoration output for
-C
/
-L
modes.
comment
*dir[]
need to be declared as*dir[x]
. Argh. But, at least it is just for this function and not a global!j = 0
->j = i + 1
: Reduced rounds from x^2 to sum(1 .. x-1) .free(msg)
. :P-C
/-L
modes.