diff options
author | Jim Meyering <jim@meyering.net> | 2005-09-19 06:47:47 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2005-09-19 06:47:47 +0000 |
commit | f721f106824545288e71c549d36814a4adcc92b2 (patch) | |
tree | a8fdd8fd5fdf6511bf3c789ef7b618f8235a437d | |
parent | 864947764dbf22cc8cc9302cf3615333241ccddc (diff) | |
download | coreutils-f721f106824545288e71c549d36814a4adcc92b2.tar.xz |
(remove_cwd_entries): Syntactic tweak: move an
assignment out of an if-expression.
-rw-r--r-- | src/remove.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/remove.c b/src/remove.c index aad4856b6..58042286a 100644 --- a/src/remove.c +++ b/src/remove.c @@ -867,7 +867,8 @@ remove_cwd_entries (Dirstack_state *ds, char **subdir, struct stat *subdir_sb, /* Set errno to zero so we can distinguish between a readdir failure and when readdir simply finds that there are no more entries. */ errno = 0; - if ((dp = readdir_ignoring_dot_and_dotdot (dirp)) == NULL) + dp = readdir_ignoring_dot_and_dotdot (dirp); + if (dp == NULL) { if (errno) { |