From fa2e9ec311b99dee2fbff5ee5fa2c743298dacad Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Tue, 1 Jun 2004 08:12:45 +0000 Subject: r960: convert 'unsigned int' to uint_t in the most places metze (This used to be commit 18062d2ed9fc9224c43143c10efbf2f6f1f5bbe0) --- source4/utils/nmblookup.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source4/utils/nmblookup.c') diff --git a/source4/utils/nmblookup.c b/source4/utils/nmblookup.c index b94887cade..6505e6df3c 100644 --- a/source4/utils/nmblookup.c +++ b/source4/utils/nmblookup.c @@ -148,7 +148,7 @@ static void do_node_status(int fd, const char *name, int type, struct in_addr ip /**************************************************************************** send out one query ****************************************************************************/ -static BOOL query_one(const char *lookup, unsigned int lookup_type) +static BOOL query_one(const char *lookup, uint_t lookup_type) { int j, count, flags = 0; struct in_addr *ip_list=NULL; @@ -207,7 +207,7 @@ static BOOL query_one(const char *lookup, unsigned int lookup_type) int main(int argc,char *argv[]) { int opt; - unsigned int lookup_type = 0x0; + uint_t lookup_type = 0x0; fstring lookup; extern int optind; extern char *optarg; -- cgit