Skip to content

Commit 6355262

Browse files
committed
ls.c: fix typo of -fanalyzer in comment
Added on commit c6166d7 ("free some memory; get rid of false positive from gcc static analyzer", 2020-09-28).
1 parent b87974e commit 6355262

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/firejail/ls.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ static void print_directory(const char *path) {
182182
else {
183183
for (i = 0; i < n; i++)
184184
print_file_or_dir(path, namelist[i]->d_name);
185-
// get rid of false psitive reported by GCC -fanalyze
185+
// get rid of false psitive reported by GCC -fanalyzer
186186
for (i = 0; i < n; i++)
187187
free(namelist[i]);
188188
}

0 commit comments

Comments
 (0)