https://git.reactos.org/?p=reactos.git;a=commitdiff;h=03522e1edef953a846354…
commit 03522e1edef953a8463541593fc935e87aeb0e49
Author: Timo Kreuzer <timo.kreuzer(a)reactos.org>
AuthorDate: Sat Nov 23 17:48:16 2019 +0100
Commit: Timo Kreuzer <timo.kreuzer(a)reactos.org>
CommitDate: Sun Nov 24 09:28:00 2019 +0100
[NETREG] Fix a 64bit printf format warning
---
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 f7f5105761e..35f0221698e 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 %x\n", l );
+ fprintf( stderr, "Socket %Ix\n", l );
if( l == INVALID_SOCKET ) return l;
if( bind( l, (struct sockaddr *)&sa, sizeof( sa ) ) < 0 ) {