summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTed Unangst <tedu@cvs.openbsd.org>2003-06-25 03:25:30 +0000
committerTed Unangst <tedu@cvs.openbsd.org>2003-06-25 03:25:30 +0000
commit1cd2fb26fef796050ceec20b67b02b954e22f590 (patch)
treeab9fb37e7fd0008c322c0a2e4f903b497fb438b4
parent9d64f57e4a83470fa01345459f7f333e7c729e4e (diff)
more cast removal, and fix some indent(1) oddities
-rw-r--r--usr.bin/diff/diffdir.c19
-rw-r--r--usr.bin/diff/diffreg.c29
2 files changed, 21 insertions, 27 deletions
diff --git a/usr.bin/diff/diffdir.c b/usr.bin/diff/diffdir.c
index d929f7fa500..a036d77551c 100644
--- a/usr.bin/diff/diffdir.c
+++ b/usr.bin/diff/diffdir.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: diffdir.c,v 1.3 2003/06/25 03:02:33 tedu Exp $ */
+/* $OpenBSD: diffdir.c,v 1.4 2003/06/25 03:25:29 tedu Exp $ */
/*
* Copyright (C) Caldera International Inc. 2001-2002.
@@ -79,7 +79,7 @@ static void compare(struct dir *);
static void calldiff(char *);
static void setfile(char **fpp, char **epp, char *file);
static int useless(char *);
-static void only(struct dir * dp, int which);
+static void only(struct dir *dp, int which);
static void scanpr(struct dir *, int, char *, char *, char *, char *, char *);
void
@@ -186,7 +186,7 @@ setfile(char **fpp, char **epp, char *file)
}
static void
-scanpr(struct dir * dp, int test, char *title, char *file1, char *efile1,
+scanpr(struct dir *dp, int test, char *title, char *file1, char *efile1,
char *file2, char *efile2)
{
int titled = 0;
@@ -210,7 +210,7 @@ scanpr(struct dir * dp, int test, char *title, char *file1, char *efile1,
}
void
-only(struct dir * dp, int which)
+only(struct dir *dp, int which)
{
char *file = which == 1 ? file1 : file2;
char *efile = which == 1 ? efile1 : efile2;
@@ -246,12 +246,7 @@ setupdir(char *cp)
ep->d_entry = talloc(ep->d_namlen + 1);
strcpy(ep->d_entry, rp->d_name);
}
- dp = realloc((char *) dp,
- (nitems + 1) * sizeof(struct dir));
- if (dp == 0) {
- fprintf(stderr, "diff: ran out of memory\n");
- done();
- }
+ dp = ralloc(dp, (nitems + 1) * sizeof(struct dir));
}
dp[nitems].d_entry = 0; /* delimiter */
closedir(dirp);
@@ -260,13 +255,13 @@ setupdir(char *cp)
}
int
-entcmp(struct dir * d1, struct dir * d2)
+entcmp(struct dir *d1, struct dir *d2)
{
return (strcmp(d1->d_entry, d2->d_entry));
}
static void
-compare(struct dir * dp)
+compare(struct dir *dp)
{
int i, j;
int f1, f2, fmt1, fmt2;
diff --git a/usr.bin/diff/diffreg.c b/usr.bin/diff/diffreg.c
index e5adb43df24..e1e01601ccc 100644
--- a/usr.bin/diff/diffreg.c
+++ b/usr.bin/diff/diffreg.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: diffreg.c,v 1.3 2003/06/25 03:02:33 tedu Exp $ */
+/* $OpenBSD: diffreg.c,v 1.4 2003/06/25 03:25:29 tedu Exp $ */
/*
* Copyright (C) Caldera International Inc. 2001-2002.
@@ -132,8 +132,7 @@ struct line {
} *file[2], line;
int len[2];
-struct line *sfile[2]; /* shortened by pruning common prefix and
- * suffix */
+struct line *sfile[2]; /* shortened by pruning common prefix and suffix */
int slen[2];
int pref, suff; /* length of prefix and suffix */
int *class; /* will be overlaid on file[0] */
@@ -320,11 +319,11 @@ notsame:
member = (int *)file[1];
equiv(sfile[0], slen[0], sfile[1], slen[1], member);
- member = ralloc((char *) member, (slen[1] + 2) * sizeof(int));
+ member = ralloc(member, (slen[1] + 2) * sizeof(int));
- class = (int *) file[0];
+ class = (int *)file[0];
unsort(sfile[0], slen[0], class);
- class = ralloc((char *) class, (slen[0] + 2) * sizeof(int));
+ class = ralloc(class, (slen[0] + 2) * sizeof(int));
klist = talloc((slen[0] + 2) * sizeof(int));
clist = talloc(sizeof(cand));
@@ -396,7 +395,7 @@ splice(char *dir, char *file)
}
static void
-prepare(int i, FILE * fd)
+prepare(int i, FILE *fd)
{
struct line *p;
int j, h;
@@ -404,7 +403,7 @@ prepare(int i, FILE * fd)
fseek(fd, 0, 0);
p = talloc(3 * sizeof(line));
for (j = 0; (h = readhash(fd));) {
- p = (struct line *) ralloc((char *) p, (++j + 3) * sizeof(line));
+ p = ralloc(p, (++j + 3) * sizeof(line));
p[j].value = h;
}
len[i] = j;
@@ -430,7 +429,7 @@ prune(void)
}
static void
-equiv(struct line * a, int n, struct line * b, int m, int *c)
+equiv(struct line *a, int n, struct line *b, int m, int *c)
{
int i, j;
i = j = 1;
@@ -500,7 +499,7 @@ newcand(int x, int y, int pred)
{
struct cand *q;
- clist = (struct cand *) ralloc((char *) clist, ++clen * sizeof(cand));
+ clist = ralloc(clist, ++clen * sizeof(cand));
q = clist + clen - 1;
q->x = x;
q->y = y;
@@ -652,7 +651,7 @@ check(void)
}
static void
-sort(struct line * a, int n)
+sort(struct line *a, int n)
{ /* shellsort CACM #201 */
struct line w;
int j, m = 0; /* gcc */
@@ -687,7 +686,7 @@ sort(struct line * a, int n)
}
static void
-unsort(struct line * f, int l, int *b)
+unsort(struct line *f, int l, int *b)
{
int *a;
int i;
@@ -880,7 +879,7 @@ range(int a, int b, char *separator)
}
static void
-fetch(long *f, int a, int b, FILE * lb, char *s, int oldfile)
+fetch(long *f, int a, int b, FILE *lb, char *s, int oldfile)
{
int i, j;
int c;
@@ -955,7 +954,7 @@ fetch(long *f, int a, int b, FILE * lb, char *s, int oldfile)
* summing 1-s complement in 16-bit hunks
*/
static int
-readhash(FILE * f)
+readhash(FILE *f)
{
long sum;
unsigned shift;
@@ -1020,7 +1019,7 @@ readhash(FILE * f)
}
static int
-asciifile(FILE * f)
+asciifile(FILE *f)
{
char buf[BUFSIZ];
int cnt;