summaryrefslogtreecommitdiff
path: root/dpkg-deb/info.c
diff options
context:
space:
mode:
Diffstat (limited to 'dpkg-deb/info.c')
-rw-r--r--dpkg-deb/info.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/dpkg-deb/info.c b/dpkg-deb/info.c
index 07caecfd5..0229f3a91 100644
--- a/dpkg-deb/info.c
+++ b/dpkg-deb/info.c
@@ -160,7 +160,8 @@ info_list(const char *debar, const char *dir)
ohshite(_("failed to read '%.255s' (in '%.255s')"), cdep->d_name, dir);
fclose(cc);
printf(_(" %7jd bytes, %5d lines %c %-20.127s %.127s\n"),
- (intmax_t)stab.st_size, lines, S_IXUSR & stab.st_mode ? '*' : ' ',
+ (intmax_t)stab.st_size, lines,
+ (S_IXUSR & stab.st_mode) ? '*' : ' ',
cdep->d_name, interpreter);
} else {
printf(_(" not a plain file %.255s\n"), cdep->d_name);