summaryrefslogtreecommitdiffstats
path: root/cpukit/libcsupport
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1999-12-13 21:21:31 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1999-12-13 21:21:31 +0000
commitda8ae79b3e66ab119dd7973bb42a36e8fee50ff8 (patch)
tree699dc5cff90363015cea2479055b5790dcfc4d08 /cpukit/libcsupport
parentPatch rtems-19991203.sh2.diff from John M. Mills <jmills@tga.com> which (diff)
downloadrtems-da8ae79b3e66ab119dd7973bb42a36e8fee50ff8.tar.bz2
Warning removal patch from Philip A. Prindeville <philipp@zembu.com>.
Diffstat (limited to 'cpukit/libcsupport')
-rw-r--r--cpukit/libcsupport/src/getcwd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpukit/libcsupport/src/getcwd.c b/cpukit/libcsupport/src/getcwd.c
index d3e8a2859b..26b564a760 100644
--- a/cpukit/libcsupport/src/getcwd.c
+++ b/cpukit/libcsupport/src/getcwd.c
@@ -64,7 +64,7 @@ static char sccsid[] = "@(#)getcwd.c 5.11 (Berkeley) 2/24/91";
#define ISDOT(dp) \
(dp->d_name[0] == '.' && (dp->d_name[1] == '\0' || \
- dp->d_name[1] == '.' && dp->d_name[2] == '\0'))
+ (dp->d_name[1] == '.' && dp->d_name[2] == '\0')))
#ifndef _REENT_ONLY