mirror of
https://github.com/reactos/reactos.git
synced 2025-05-28 13:38:19 +00:00
Remove warnings
svn path=/trunk/; revision=17610
This commit is contained in:
parent
45c69b6adb
commit
72784f6c8f
2 changed files with 3 additions and 5 deletions
|
@ -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 ) {
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Reference in a new issue