From 2f87c84349248bf105de731c17cdf75d0050219a Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Fri, 5 Feb 1999 00:28:43 +0000 Subject: Corrected spacing and added some new error checks that were needed to avoid dereferencing NULLs. --- c/src/lib/libc/open.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'c/src/lib/libc/open.c') diff --git a/c/src/lib/libc/open.c b/c/src/lib/libc/open.c index 4cdf5acf35..32fd4076e6 100644 --- a/c/src/lib/libc/open.c +++ b/c/src/lib/libc/open.c @@ -102,9 +102,9 @@ int open( /* * See if the file exists. */ - - status = rtems_filesystem_evaluate_path( pathname, eval_flags, &temp_loc, TRUE ); + status = rtems_filesystem_evaluate_path( + pathname, eval_flags, &temp_loc, TRUE ); if ( status == -1 ) { if ( errno != ENOENT ) { -- cgit v1.2.3