From 2c5b3e3265993372282cafdc1f14a6a0319aa985 Mon Sep 17 00:00:00 2001 From: Katayama Hirofumi MZ Date: Fri, 16 Aug 2019 16:57:40 +0900 Subject: [PATCH] [ROSAPPS][NETREG] Fix build --- modules/rosapps/applications/net/netreg/netreg.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/rosapps/applications/net/netreg/netreg.cpp b/modules/rosapps/applications/net/netreg/netreg.cpp index de836c972b1..f7f5105761e 100644 --- a/modules/rosapps/applications/net/netreg/netreg.cpp +++ b/modules/rosapps/applications/net/netreg/netreg.cpp @@ -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 ) { -- 2.17.1