From 50f32b11653429546d7b8ff2693b5232b885e201 Mon Sep 17 00:00:00 2001 From: Ralf Corsepius Date: Sun, 18 Apr 2004 06:05:35 +0000 Subject: Remove stray white spaces. --- cpukit/libcsupport/src/chdir.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'cpukit/libcsupport/src/chdir.c') diff --git a/cpukit/libcsupport/src/chdir.c b/cpukit/libcsupport/src/chdir.c index ab9811a59a..b508ea20ed 100644 --- a/cpukit/libcsupport/src/chdir.c +++ b/cpukit/libcsupport/src/chdir.c @@ -1,4 +1,4 @@ -/* +/* * chdir() - POSIX 1003.1b - 5.2.1 - Change Current Working Directory * * COPYRIGHT (c) 1989-1999. @@ -34,7 +34,7 @@ int chdir( * Get the node where we wish to go. */ - result = rtems_filesystem_evaluate_path( + result = rtems_filesystem_evaluate_path( pathname, RTEMS_LIBIO_PERMS_SEARCH, &loc, TRUE ); if ( result != 0 ) return -1; @@ -52,10 +52,10 @@ int chdir( rtems_filesystem_freenode( &loc ); rtems_set_errno_and_return_minus_one( ENOTDIR ); } - + rtems_filesystem_freenode( &rtems_filesystem_current ); - + rtems_filesystem_current = loc; - + return 0; } -- cgit v1.2.3