diff options
author | Jim Meyering <jim@meyering.net> | 1998-01-23 18:34:12 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1998-01-23 18:34:12 +0000 |
commit | 9c70563ee77c6faec866b4891879bde924e4e6fb (patch) | |
tree | d54592609f48657149d1043b990319777ad79168 /src | |
parent | 37ce5a5497604c48232f19a94eae383627ae5062 (diff) | |
download | coreutils-9c70563ee77c6faec866b4891879bde924e4e6fb.tar.xz |
add curlies
Diffstat (limited to 'src')
-rw-r--r-- | src/ls.c | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -1710,7 +1710,10 @@ gobble_file (const char *name, int explicit_arg, const char *dirname) val = lstat (path, &files[files_index].stat); } else - val = lstat (path, &files[files_index].stat); + { + val = lstat (path, &files[files_index].stat); + } + if (val < 0) { error (0, errno, "%s", path); |