diff options
Diffstat (limited to 'editors/sed.c')
-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 cb3f1bb..75435f6 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 */ |