Change uint_t to unsigned int in lib/util
[ira/wip.git] / lib / util / charset / iconv.c
index 8256dc665c700796366c21504086b3f5393ed4af..2dac333d0c4beed9b199f212fe50c788c41ce385 100644 (file)
@@ -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) {
                         char **outbuf, size_t *outbytesleft)
 {
        while (*inbytesleft >= 1 && *outbytesleft >= 2) {
-               uint_t v;
+               unsigned int v;
 
                if ((*inbuf)[0] != '@') {
                        /* seven bit ascii case */
 
                if ((*inbuf)[0] != '@') {
                        /* seven bit ascii case */