diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2007-01-20 21:29:50 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2007-01-20 21:29:50 +0000 |
commit | 088a212bf58ec3472f27784ebb1fc898e0f99918 (patch) | |
tree | 1dc4b2d8c507d1420e0e078ec2240d6c0279ab3e | |
parent | ca5b35299e2513e704a6a6cc2f1ac4e650c3b2de (diff) | |
download | busybox-w32-088a212bf58ec3472f27784ebb1fc898e0f99918.tar.gz busybox-w32-088a212bf58ec3472f27784ebb1fc898e0f99918.tar.bz2 busybox-w32-088a212bf58ec3472f27784ebb1fc898e0f99918.zip |
- small size tweaks
-rw-r--r-- | coreutils/diff.c | 4 |
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; | |||
109 | static int len[2]; | 109 | static int len[2]; |
110 | static int pref, suff; /* length of prefix and suffix */ | 110 | static int pref, suff; /* length of prefix and suffix */ |
111 | static int slen[2]; | 111 | static int slen[2]; |
112 | static smallint anychange; | 112 | static bool anychange; |
113 | static long *ixnew; /* will be overlaid on file[1] */ | 113 | static long *ixnew; /* will be overlaid on file[1] */ |
114 | static long *ixold; /* will be overlaid on klist */ | 114 | static long *ixold; /* will be overlaid on klist */ |
115 | static struct cand *clist; /* merely a free storage pot for candidates */ | 115 | static struct cand *clist; /* merely a free storage pot for candidates */ |
@@ -1172,7 +1172,7 @@ static void diffdir(char *p1, char *p2) | |||
1172 | 1172 | ||
1173 | int diff_main(int argc, char **argv) | 1173 | int diff_main(int argc, char **argv) |
1174 | { | 1174 | { |
1175 | smallint gotstdin = 0; | 1175 | bool gotstdin = 0; |
1176 | char *U_opt; | 1176 | char *U_opt; |
1177 | char *f1, *f2; | 1177 | char *f1, *f2; |
1178 | llist_t *L_arg = NULL; | 1178 | llist_t *L_arg = NULL; |