Remove warnings

svn path=/trunk/; revision=17610
This commit is contained in:
Hervé Poussineau 2005-09-02 21:26:51 +00:00
parent 45c69b6adb
commit 72784f6c8f
2 changed files with 3 additions and 5 deletions

View file

@ -403,8 +403,8 @@ private:
string full_input; string full_input;
string remaining_output; string remaining_output;
RHState state;
SOCKET socket; SOCKET socket;
RHState state;
}; };
SOCKET make_listening_socket( int port ) { SOCKET make_listening_socket( int port ) {
@ -440,7 +440,7 @@ int main( int argc, char **argv ) {
SOCKET listen_socket; SOCKET listen_socket;
int i; int i;
int port_to_listen = 80; int port_to_listen = 80;
int active_fds = 0; unsigned int active_fds = 0;
for( i = 1; i < argc; i++ ) { for( i = 1; i < argc; i++ ) {
if( string( "-p" ) == argv[i] ) { if( string( "-p" ) == argv[i] ) {
@ -480,8 +480,6 @@ int main( int argc, char **argv ) {
FD_SET(listen_socket,&pollin); FD_SET(listen_socket,&pollin);
struct timeval tv;
active_fds = select( active_fds, &pollin, &pollout, &pollerr, NULL ); active_fds = select( active_fds, &pollin, &pollout, &pollerr, NULL );
if( active_fds > 0 ) { if( active_fds > 0 ) {

View file

@ -1,4 +1,4 @@
<module name="netreg" type="win32cui" installbase="system32" installname="netreg.exe" warnings="true"> <module name="netreg" type="win32cui" installbase="system32" installname="netreg.exe">
<include base="netreg">.</include> <include base="netreg">.</include>
<define name="__USE_W32API" /> <define name="__USE_W32API" />
<define name="_WIN32_IE">0x0501</define> <define name="_WIN32_IE">0x0501</define>