svn commit: trunk/busybox/coreutils
aldot at busybox.net
aldot at busybox.net
Sat Jan 20 13:29:51 PST 2007
Author: aldot
Date: 2007-01-20 13:29:50 -0800 (Sat, 20 Jan 2007)
New Revision: 17416
Log:
- small size tweaks
Modified:
trunk/busybox/coreutils/diff.c
Changeset:
Modified: trunk/busybox/coreutils/diff.c
===================================================================
--- trunk/busybox/coreutils/diff.c 2007-01-20 21:29:32 UTC (rev 17415)
+++ trunk/busybox/coreutils/diff.c 2007-01-20 21:29:50 UTC (rev 17416)
@@ -109,7 +109,7 @@
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 @@
int diff_main(int argc, char **argv)
{
- smallint gotstdin = 0;
+ bool gotstdin = 0;
char *U_opt;
char *f1, *f2;
llist_t *L_arg = NULL;
More information about the busybox-cvs
mailing list