diff options
author | Matt Kraai <kraai@debian.org> | 2000-09-27 02:43:35 +0000 |
---|---|---|
committer | Matt Kraai <kraai@debian.org> | 2000-09-27 02:43:35 +0000 |
commit | bbaef66b3f99213f06adf04df6b3e5e61278d75b (patch) | |
tree | 3838db4158e8e05a753fffd6e87cbbc7946425ad /editors | |
parent | e0bcce09baff576b1b16b3ffe780b6d91c7710c2 (diff) |
Consolidate handling of some fopen failures.
Diffstat (limited to 'editors')
-rw-r--r-- | editors/sed.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/editors/sed.c b/editors/sed.c index cb3f1bbf1..75435f67a 100644 --- a/editors/sed.c +++ b/editors/sed.c @@ -472,9 +472,7 @@ static void load_cmd_file(char *filename) char *line; char *nextline; - cmdfile = fopen(filename, "r"); - if (cmdfile == NULL) - fatalError(strerror(errno)); + cmdfile = xfopen(filename, "r"); while ((line = get_line_from_file(cmdfile)) != NULL) { /* if a line ends with '\' it needs the next line appended to it */ |