aboutsummaryrefslogtreecommitdiff
path: root/coreutils/diff.c
diff options
context:
space:
mode:
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2007-01-20 21:29:50 +0000
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2007-01-20 21:29:50 +0000
commit088a212bf58ec3472f27784ebb1fc898e0f99918 (patch)
tree1dc4b2d8c507d1420e0e078ec2240d6c0279ab3e /coreutils/diff.c
parentca5b35299e2513e704a6a6cc2f1ac4e650c3b2de (diff)
downloadbusybox-088a212bf58ec3472f27784ebb1fc898e0f99918.tar.gz
- small size tweaks
Diffstat (limited to 'coreutils/diff.c')
-rw-r--r--coreutils/diff.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/coreutils/diff.c b/coreutils/diff.c
index f9865e971..c846e2b69 100644
--- a/coreutils/diff.c
+++ b/coreutils/diff.c
@@ -109,7 +109,7 @@ static int clen;
static int len[2];
static int pref, suff; /* length of prefix and suffix */
static int slen[2];
-static smallint anychange;
+static bool anychange;
static long *ixnew; /* will be overlaid on file[1] */
static long *ixold; /* will be overlaid on klist */
static struct cand *clist; /* merely a free storage pot for candidates */
@@ -1172,7 +1172,7 @@ static void diffdir(char *p1, char *p2)
int diff_main(int argc, char **argv)
{
- smallint gotstdin = 0;
+ bool gotstdin = 0;
char *U_opt;
char *f1, *f2;
llist_t *L_arg = NULL;