diff options
Diffstat (limited to 'editors')
-rw-r--r-- | editors/sed.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editors/sed.c b/editors/sed.c index a2e2b7349..dcdf382dc 100644 --- a/editors/sed.c +++ b/editors/sed.c | |||
@@ -157,7 +157,7 @@ static void sed_free_and_close_stuff(void) | |||
157 | sed_cmd = sed_cmd_next; | 157 | sed_cmd = sed_cmd_next; |
158 | } | 158 | } |
159 | 159 | ||
160 | if (G.hold_space) free(G.hold_space); | 160 | free(G.hold_space); |
161 | 161 | ||
162 | while (G.current_input_file < G.input_file_count) | 162 | while (G.current_input_file < G.input_file_count) |
163 | fclose(G.input_file_list[G.current_input_file++]); | 163 | fclose(G.input_file_list[G.current_input_file++]); |