diff --git a/reactos/drivers/net/tcpip/include/tcpip.h b/reactos/drivers/net/tcpip/include/tcpip.h index fbc74489cca..f54248267f0 100644 --- a/reactos/drivers/net/tcpip/include/tcpip.h +++ b/reactos/drivers/net/tcpip/include/tcpip.h @@ -136,7 +136,7 @@ typedef struct { } TDIEntityInfo; #ifndef htons -#define htons(x) (((x) << 16) | (((x) >> 8) & 0xff)) +#define htons(x) (((x) << 8) | (((x) >> 8) & 0xff)) #endif /* Global variable */