mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-26 19:33:31 +00:00
[NETREG] Fix a 64bit printf format warning
This commit is contained in:
@@ -417,7 +417,7 @@ SOCKET make_listening_socket( int port ) {
|
||||
|
||||
fprintf( stderr, "Creating the listener\n" );
|
||||
SOCKET l = socket( PF_INET, SOCK_STREAM, 0 );
|
||||
fprintf( stderr, "Socket %x\n", l );
|
||||
fprintf( stderr, "Socket %Ix\n", l );
|
||||
|
||||
if( l == INVALID_SOCKET ) return l;
|
||||
if( bind( l, (struct sockaddr *)&sa, sizeof( sa ) ) < 0 ) {
|
||||
|
||||
Reference in New Issue
Block a user