aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/finger
diff options
context:
space:
mode:
authorJuli Mallett <jmallett@FreeBSD.org>2002-05-17 05:11:07 +0000
committerJuli Mallett <jmallett@FreeBSD.org>2002-05-17 05:11:07 +0000
commit47bca8b02cf7a0e85f952078ac29699abfd0891a (patch)
treecf78d7652b64bccf0e61a4cef6f041a454a5bc4c /usr.bin/finger
parent03083777d91b03f227eaa9003c00d29751c35249 (diff)
Notes
Diffstat (limited to 'usr.bin/finger')
-rw-r--r--usr.bin/finger/util.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/finger/util.c b/usr.bin/finger/util.c
index 218b1bffd0ff..ec8df2e90f27 100644
--- a/usr.bin/finger/util.c
+++ b/usr.bin/finger/util.c
@@ -244,7 +244,7 @@ palloc()
{
PERSON *p;
- if ((p = malloc((u_int) sizeof(PERSON))) == NULL)
+ if ((p = malloc(sizeof(PERSON))) == NULL)
err(1, NULL);
return(p);
}
@@ -255,7 +255,7 @@ walloc(pn)
{
WHERE *w;
- if ((w = malloc((u_int) sizeof(WHERE))) == NULL)
+ if ((w = malloc(sizeof(WHERE))) == NULL)
err(1, NULL);
if (pn->whead == NULL)
pn->whead = pn->wtail = w;