aboutsummaryrefslogtreecommitdiffstats
path: root/src/nnn.c
diff options
context:
space:
mode:
authorGravatar Arun Prakash Jana <engineerarun@gmail.com>2020-08-09 14:04:27 +0530
committerGravatar Arun Prakash Jana <engineerarun@gmail.com>2020-08-09 14:04:27 +0530
commitaa8769eceecb88097719bb28ee2a47af13b72267 (patch)
treedff6784c4dbe0aea8a2c0cbbc6cb758187b9b780 /src/nnn.c
parent966fe839eee2f25ec2ed548234c9edfe984ebcfa (diff)
downloadnnn-aa8769eceecb88097719bb28ee2a47af13b72267.tar.gz
Reduce a check
Diffstat (limited to 'src/nnn.c')
-rw-r--r--src/nnn.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/nnn.c b/src/nnn.c
index 975fe72..0e0e54a 100644
--- a/src/nnn.c
+++ b/src/nnn.c
@@ -3446,11 +3446,10 @@ static void printent(const struct entry *ent, uint namecols, bool sel)
ind = '*';
}
- if (ent->flags & HARD_LINK)
- pair = C_HRD;
-
if (!ent->size)
pair = C_UND;
+ else if (ent->flags & HARD_LINK)
+ pair = C_HRD;
else if (!pair)
pair = C_FIL;
break;