diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2002-05-27 03:14:23 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2002-05-27 03:14:23 +0000 |
commit | 0d12679f6356644970af765dfcacc0c74ad69160 (patch) | |
tree | c9d662069041e2fd4c1b98c4a72af9342fa7bc35 /usr.bin/rdist/lookup.c | |
parent | 65bb3c8b8bcac580928fe9f209974ebebbfb0f26 (diff) |
unsigned vs unsigned int
Diffstat (limited to 'usr.bin/rdist/lookup.c')
-rw-r--r-- | usr.bin/rdist/lookup.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/rdist/lookup.c b/usr.bin/rdist/lookup.c index a839afce822..3d5c9560bd6 100644 --- a/usr.bin/rdist/lookup.c +++ b/usr.bin/rdist/lookup.c @@ -1,4 +1,4 @@ -/* $OpenBSD: lookup.c,v 1.9 2001/11/19 19:02:15 mpech Exp $ */ +/* $OpenBSD: lookup.c,v 1.10 2002/05/27 03:14:22 deraadt Exp $ */ /* * Copyright (c) 1983 Regents of the University of California. @@ -39,7 +39,7 @@ static char RCSid[] = "$From: lookup.c,v 6.8 1996/07/19 16:49:55 michaelc Exp $"; #else static char RCSid[] = -"$OpenBSD: lookup.c,v 1.9 2001/11/19 19:02:15 mpech Exp $"; +"$OpenBSD: lookup.c,v 1.10 2002/05/27 03:14:22 deraadt Exp $"; #endif static char sccsid[] = "@(#)lookup.c 5.1 (Berkeley) 6/6/85"; @@ -137,7 +137,7 @@ lookup(name, action, value) /* %% in name. Ignore quotas in name */ int action; struct namelist *value; { - unsigned n; + unsigned int n; char *cp; struct syment *s; char ebuf[BUFSIZ]; |