mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 18:15:11 +00:00
[NETREG] Fix a 64bit printf format warning
This commit is contained in:
parent
70bcd0fc6b
commit
03522e1ede
1 changed files with 1 additions and 1 deletions
|
@ -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 ) {
|
||||
|
|
Loading…
Reference in a new issue