diff options
author | Matt Kraai <mkraai@beckman.com> | 2010-01-05 09:41:24 -0800 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2010-02-02 07:18:17 +0100 |
commit | aa6a507e76685f2a8d1f3bd33cbf0fbdeb0d69ce (patch) | |
tree | 11684012b24917253f89856169995c593d958485 /libcli/nbt | |
parent | a7250eb14270101d4ca580acd8fdcaf7e308e515 (diff) | |
download | samba-aa6a507e76685f2a8d1f3bd33cbf0fbdeb0d69ce.tar.gz samba-aa6a507e76685f2a8d1f3bd33cbf0fbdeb0d69ce.tar.bz2 samba-aa6a507e76685f2a8d1f3bd33cbf0fbdeb0d69ce.zip |
Change uint_t to unsigned int in libcli
Signed-off-by: Stefan Metzmacher <metze@samba.org>
Diffstat (limited to 'libcli/nbt')
-rw-r--r-- | libcli/nbt/nbtname.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libcli/nbt/nbtname.c b/libcli/nbt/nbtname.c index 136379a313..f890b91261 100644 --- a/libcli/nbt/nbtname.c +++ b/libcli/nbt/nbtname.c @@ -48,7 +48,7 @@ static enum ndr_err_code ndr_pull_component(struct ndr_pull *ndr, uint32_t *max_offset) { uint8_t len; - uint_t loops = 0; + unsigned int loops = 0; while (loops < 5) { if (*offset >= ndr->data_size) { return ndr_pull_error(ndr, NDR_ERR_STRING, |