diff options
author | Matt Kraai <mkraai@beckman.com> | 2010-01-05 09:43:24 -0800 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2010-02-02 07:18:16 +0100 |
commit | a2c95a5d961594f2accbb032cd7e8da9767e2e47 (patch) | |
tree | 231131e15f73188cd28966702868b9a124012b9a /lib | |
parent | e3aeea29a4e730ccbe7367645703cdc9ee8e7a7e (diff) | |
download | samba-a2c95a5d961594f2accbb032cd7e8da9767e2e47.tar.gz samba-a2c95a5d961594f2accbb032cd7e8da9767e2e47.tar.bz2 samba-a2c95a5d961594f2accbb032cd7e8da9767e2e47.zip |
Change uint_t to unsigned int in lib/replace
Signed-off-by: Stefan Metzmacher <metze@samba.org>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/replace/README | 1 | ||||
-rw-r--r-- | lib/replace/getifaddrs.c | 2 | ||||
-rw-r--r-- | lib/replace/libreplace_cc.m4 | 1 | ||||
-rw-r--r-- | lib/replace/test/testsuite.c | 1 |
4 files changed, 1 insertions, 4 deletions
diff --git a/lib/replace/README b/lib/replace/README index 26383bc89a..b2d2e4fea5 100644 --- a/lib/replace/README +++ b/lib/replace/README @@ -75,7 +75,6 @@ realpath Types: bool socklen_t -uint_t uint{8,16,32,64}_t int{8,16,32,64}_t intptr_t diff --git a/lib/replace/getifaddrs.c b/lib/replace/getifaddrs.c index 3a91bb40d2..84d790689d 100644 --- a/lib/replace/getifaddrs.c +++ b/lib/replace/getifaddrs.c @@ -282,7 +282,7 @@ int rep_getifaddrs(struct ifaddrs **ifap) i = ifc.ifc_len; while (i > 0) { - uint_t inc; + unsigned int inc; inc = ifr->ifr_addr.sa_len; diff --git a/lib/replace/libreplace_cc.m4 b/lib/replace/libreplace_cc.m4 index a26dee498e..48d9e84a32 100644 --- a/lib/replace/libreplace_cc.m4 +++ b/lib/replace/libreplace_cc.m4 @@ -115,7 +115,6 @@ AC_CHECK_SIZEOF(short) AC_CHECK_SIZEOF(long) AC_CHECK_SIZEOF(long long) -AC_CHECK_TYPE(uint_t, unsigned int) AC_CHECK_TYPE(int8_t, char) AC_CHECK_TYPE(uint8_t, unsigned char) AC_CHECK_TYPE(int16_t, short) diff --git a/lib/replace/test/testsuite.c b/lib/replace/test/testsuite.c index caa70d68e3..829e9f9c1d 100644 --- a/lib/replace/test/testsuite.c +++ b/lib/replace/test/testsuite.c @@ -751,7 +751,6 @@ FIXME: Types: bool socklen_t -uint_t uint{8,16,32,64}_t int{8,16,32,64}_t intptr_t |