ls.c: fix typo of -fanalyzer in comment

Added on commit c6166d79c ("free some memory; get rid of false positive
from gcc static analyzer", 2020-09-28).
This commit is contained in:
Kelvin M. Klann 2025-08-13 10:48:37 -03:00
parent b87974ee26
commit 63552628d7

View file

@ -182,7 +182,7 @@ static void print_directory(const char *path) {
else {
for (i = 0; i < n; i++)
print_file_or_dir(path, namelist[i]->d_name);
// get rid of false psitive reported by GCC -fanalyze
// get rid of false psitive reported by GCC -fanalyzer
for (i = 0; i < n; i++)
free(namelist[i]);
}