diff options
author | Charles Longeau <chl@cvs.openbsd.org> | 2016-03-28 11:25:36 +0000 |
---|---|---|
committer | Charles Longeau <chl@cvs.openbsd.org> | 2016-03-28 11:25:36 +0000 |
commit | da5879b7eff552a34ea78cf021ab5bc0e2d6a9bb (patch) | |
tree | efdf270caa64cf247679be8b75374f8886377f82 /bin/ls | |
parent | c853ced736f8a01f215027f3734dad090e5bbd68 (diff) |
remove unused variable
ok schwarze@
Diffstat (limited to 'bin/ls')
-rw-r--r-- | bin/ls/ls.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/ls/ls.c b/bin/ls/ls.c index b16e82759aa..44cc4eeb5c9 100644 --- a/bin/ls/ls.c +++ b/bin/ls/ls.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ls.c,v 1.45 2016/03/17 05:27:10 bentley Exp $ */ +/* $OpenBSD: ls.c,v 1.46 2016/03/28 11:25:35 chl Exp $ */ /* $NetBSD: ls.c,v 1.18 1996/07/09 09:16:29 mycroft Exp $ */ /* @@ -101,7 +101,7 @@ ls_main(int argc, char *argv[]) static char dot[] = ".", *dotav[] = { dot, NULL }; struct winsize win; int ch, fts_options, notused; - int kflag = 0, width = 0; + int kflag = 0; char *p; #ifndef SMALL |