diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2021-07-29 12:45:37 -0700 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2021-07-29 12:45:37 -0700 |
| commit | bc813df3d749971ade565a7cf34aedae6787dc44 (patch) | |
| tree | 83ebd4020fa82769af3315ab415d0aaace4c7420 /files.c | |
| parent | db969f34a99b5ab5efd3a82d3c6d5a8e9be6f2da (diff) | |
Tweaks and optimizations
Diffstat (limited to 'files.c')
| -rw-r--r-- | files.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -186,7 +186,7 @@ void destroy_file(file_t **f) } } - for (allocated_pat_t *next; (*f)->pats; (*f)->pats = next) { + for (pat_t *next; (*f)->pats; (*f)->pats = next) { next = (*f)->pats->next; xfree(&(*f)->pats); } |
