diff options
author | Matt Kraai <mkraai@beckman.com> | 2010-01-05 09:40:54 -0800 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2010-02-02 07:18:17 +0100 |
commit | a7250eb14270101d4ca580acd8fdcaf7e308e515 (patch) | |
tree | 881f90bc89ddbe666c8ff8ea0ff5978bf112bc1e /lib/util/charset | |
parent | 2cb2d5317f8428b5eaef2365c815aa34739a80b5 (diff) | |
download | samba-a7250eb14270101d4ca580acd8fdcaf7e308e515.tar.gz samba-a7250eb14270101d4ca580acd8fdcaf7e308e515.tar.bz2 samba-a7250eb14270101d4ca580acd8fdcaf7e308e515.zip |
Change uint_t to unsigned int in lib/util
Signed-off-by: Stefan Metzmacher <metze@samba.org>
Diffstat (limited to 'lib/util/charset')
-rw-r--r-- | lib/util/charset/iconv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/util/charset/iconv.c b/lib/util/charset/iconv.c index 8256dc665c..2dac333d0c 100644 --- a/lib/util/charset/iconv.c +++ b/lib/util/charset/iconv.c @@ -355,7 +355,7 @@ static size_t ucs2hex_pull(void *cd, const char **inbuf, size_t *inbytesleft, char **outbuf, size_t *outbytesleft) { while (*inbytesleft >= 1 && *outbytesleft >= 2) { - uint_t v; + unsigned int v; if ((*inbuf)[0] != '@') { /* seven bit ascii case */ |