diff options
author | Stefan Metzmacher <metze@samba.org> | 2004-06-01 08:12:45 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:56:23 -0500 |
commit | fa2e9ec311b99dee2fbff5ee5fa2c743298dacad (patch) | |
tree | 35dc6a43cb10399e427b2fcd76d24cc23c77151d /source4/utils | |
parent | b88fc7a3911e0ff8b6d7d324028e351281e94c46 (diff) | |
download | samba-fa2e9ec311b99dee2fbff5ee5fa2c743298dacad.tar.gz samba-fa2e9ec311b99dee2fbff5ee5fa2c743298dacad.tar.bz2 samba-fa2e9ec311b99dee2fbff5ee5fa2c743298dacad.zip |
r960: convert 'unsigned int' to uint_t in the most places
metze
(This used to be commit 18062d2ed9fc9224c43143c10efbf2f6f1f5bbe0)
Diffstat (limited to 'source4/utils')
-rw-r--r-- | source4/utils/net_rap.c | 2 | ||||
-rw-r--r-- | source4/utils/nmblookup.c | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/source4/utils/net_rap.c b/source4/utils/net_rap.c index b78117b7ec..c97b9dc9c1 100644 --- a/source4/utils/net_rap.c +++ b/source4/utils/net_rap.c @@ -494,7 +494,7 @@ static void enum_queue(const char *queuename, uint16_t pri, uint16_t start, static void enum_jobs(uint16_t jobid, const char *ownername, const char *notifyname, const char *datatype, const char *jparms, uint16_t pos, uint16_t status, - const char *jstatus, unsigned int submitted, unsigned int jobsize, + const char *jstatus, uint_t submitted, uint_t jobsize, const char *comment) { d_printf(" %-23.23s %5d %9d ", 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; |