[ROSAPPS][NETREG] Fix build

This commit is contained in:
Katayama Hirofumi MZ 2019-08-16 16:57:40 +09:00
parent d48345a0ee
commit 2c5b3e3265

View file

@ -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 %I64x\n", l );
fprintf( stderr, "Socket %x\n", l );
if( l == INVALID_SOCKET ) return l;
if( bind( l, (struct sockaddr *)&sa, sizeof( sa ) ) < 0 ) {