Remove spurious casts in malloc(3)'s argument.

Use `return' instead of `exit' at the bottom of main().
This commit is contained in:
Juli Mallett 2002-05-17 02:28:46 +00:00
parent c2cba7c501
commit 307a7436ec
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=96776

View file

@ -93,7 +93,7 @@ main(argc, argv)
argv += optind;
argc -= optind;
if ((buf = malloc((u_int)BSIZE)) == NULL)
if ((buf = malloc(BSIZE)) == NULL)
errx(1, "malloc");
add(STDOUT_FILENO, "stdout");
@ -121,7 +121,7 @@ main(argc, argv)
}
if (rval < 0)
err(1, "read");
exit(exitval);
return (exitval);
}
static void
@ -138,7 +138,7 @@ add(fd, name)
{
LIST *p;
if ((p = malloc((u_int)sizeof(LIST))) == NULL)
if ((p = malloc(sizeof(LIST))) == NULL)
errx(1, "malloc");
p->fd = fd;
p->name = name;