Remove warnings
authorHervé Poussineau <hpoussin@reactos.org>
Fri, 2 Sep 2005 21:26:51 +0000 (21:26 +0000)
committerHervé Poussineau <hpoussin@reactos.org>
Fri, 2 Sep 2005 21:26:51 +0000 (21:26 +0000)
svn path=/trunk/; revision=17610

rosapps/net/netreg/netreg.cpp
rosapps/net/netreg/netreg.xml

index 06cd9ec..4886d4e 100644 (file)
@@ -403,8 +403,8 @@ private:
 
   string full_input;
   string remaining_output;
-  RHState state;
   SOCKET socket;
+  RHState state;
 };
 
 SOCKET make_listening_socket( int port ) {
@@ -440,7 +440,7 @@ int main( int argc, char **argv ) {
   SOCKET listen_socket;
   int i;
   int port_to_listen = 80;
-  int active_fds = 0;
+  unsigned int active_fds = 0;
 
   for( i = 1; i < argc; i++ ) {
     if( string( "-p" ) == argv[i] ) {
@@ -480,8 +480,6 @@ int main( int argc, char **argv ) {
 
     FD_SET(listen_socket,&pollin);
 
-    struct timeval tv;
-
     active_fds = select( active_fds, &pollin, &pollout, &pollerr, NULL );
     
     if( active_fds > 0 ) {
index 41501af..b2ee9fb 100644 (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>
        <define name="__USE_W32API" />
        <define name="_WIN32_IE">0x0501</define>