https://git.reactos.org/?p=reactos.git;a=commitdiff;h=2c5b3e3265993372282cafdc1f14a6a0319aa985

commit 2c5b3e3265993372282cafdc1f14a6a0319aa985
Author:     Katayama Hirofumi MZ <[email protected]>
AuthorDate: Fri Aug 16 16:57:40 2019 +0900
Commit:     Katayama Hirofumi MZ <[email protected]>
CommitDate: Fri Aug 16 16:57:40 2019 +0900

    [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 ) {

Reply via email to