diff options
| author | Ben Winston | 2024-06-18 12:08:11 -0400 |
|---|---|---|
| committer | Ben Winston | 2024-06-18 12:08:11 -0400 |
| commit | 2ba9fc01bd1f1f54b50004c97d7239a469dd6f19 (patch) | |
| tree | 79657c3e860868fa38545cb42bf5d2b94ef72205 /booki.c | |
| parent | c49964babacb88b71ad3aaa2cee2e5a69d537d60 (diff) | |
bugfix: multiple vars on a line each needs initializing
Diffstat (limited to 'booki.c')
| -rw-r--r-- | booki.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -903,7 +903,7 @@ void search(int argc, char* argv[], char* booki_file) { return; } - FILE *edit_file, *fixed_file = NULL; + FILE *edit_file = NULL, *fixed_file = NULL; if (search_opts.edit) { edit_file = fopen(EDIT_FILE, "w"); fixed_file = fopen(FIXED_FILE, "w"); |
