From 2c0247a19db16916e3fdc831ee5396c75ad852c2 Mon Sep 17 00:00:00 2001 From: patacongo Date: Tue, 15 Dec 2009 16:37:20 +0000 Subject: Changing NuttX fixed size type names to C99 standard names -- things will be broken for awhile git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@2347 42af7a65-404d-4744-a932-0658087f49c3 --- nuttx/netutils/thttpd/fdwatch.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'nuttx/netutils/thttpd/fdwatch.h') diff --git a/nuttx/netutils/thttpd/fdwatch.h b/nuttx/netutils/thttpd/fdwatch.h index 3aa701c14..e60727db1 100644 --- a/nuttx/netutils/thttpd/fdwatch.h +++ b/nuttx/netutils/thttpd/fdwatch.h @@ -41,7 +41,7 @@ ****************************************************************************/ #include -#include +#include /**************************************************************************** * Pre-Processor Definitions @@ -63,11 +63,11 @@ struct fdwatch_s { struct pollfd *pollfds; /* Poll data (allocated) */ void **client; /* Client data (allocated) */ - uint8 *ready; /* The list of fds with activity (allocated) */ - uint8 nfds; /* The configured maximum number of fds */ - uint8 nwatched; /* The number of fds currently watched */ - uint8 nactive; /* The number of fds with activity */ - uint8 next; /* The index to the next client data */ + uint8_t *ready; /* The list of fds with activity (allocated) */ + uint8_t nfds; /* The configured maximum number of fds */ + uint8_t nwatched; /* The number of fds currently watched */ + uint8_t nactive; /* The number of fds with activity */ + uint8_t next; /* The index to the next client data */ }; /**************************************************************************** -- cgit v1.2.3