diff options
Diffstat (limited to 'libcpp/files.cc')
-rw-r--r-- | libcpp/files.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libcpp/files.cc b/libcpp/files.cc index fbbd59e..c63f582 100644 --- a/libcpp/files.cc +++ b/libcpp/files.cc @@ -278,7 +278,7 @@ open_file (_cpp_file *file) /* The call to stat may have reset errno. */ errno = EACCES; } -#endif +#endif else if (errno == ENOTDIR) errno = ENOENT; @@ -375,7 +375,7 @@ maybe_shorter_path (const char * file) { return file2; } - else + else { free (file2); return NULL; @@ -461,7 +461,7 @@ find_file_in_dir (cpp_reader *pfile, _cpp_file *file, bool *invalid_pch, } else { - file->err_no = ENOENT; + file->err_no = ENOENT; file->path = NULL; } |