Commit edb9ebb0 authored by Kevin McKinney's avatar Kevin McKinney Committed by Greg Kroah-Hartman

Staging: bcm: Replace ULONG with unsigned long in Protocol.h

This patch replaces "ULONG" with "unsigned long"
in Protocol.h
Signed-off-by: default avatarKevin McKinney <klmckinney1@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 963fa3e6
...@@ -113,8 +113,8 @@ typedef enum _E_SERVICEFLOW_CS_SPEC_ { ...@@ -113,8 +113,8 @@ typedef enum _E_SERVICEFLOW_CS_SPEC_ {
typedef struct _TCP_HEADER { typedef struct _TCP_HEADER {
unsigned short usSrcPort; unsigned short usSrcPort;
unsigned short usDestPort; unsigned short usDestPort;
ULONG ulSeqNumber; unsigned long ulSeqNumber;
ULONG ulAckNumber; unsigned long ulAckNumber;
UCHAR HeaderLength; UCHAR HeaderLength;
UCHAR ucFlags; UCHAR ucFlags;
unsigned short usWindowsSize; unsigned short usWindowsSize;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment