Skip to content

Commit

Permalink
Staging: bcm: Replace ULONG with unsigned long in Protocol.h
Browse files Browse the repository at this point in the history
This patch replaces "ULONG" with "unsigned long"
in Protocol.h

Signed-off-by: Kevin McKinney <klmckinney1@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
  • Loading branch information
Kevin McKinney authored and Greg Kroah-Hartman committed Jan 7, 2013
1 parent 963fa3e commit edb9ebb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/staging/bcm/Protocol.h
Original file line number Diff line number Diff line change
Expand Up @@ -113,8 +113,8 @@ typedef enum _E_SERVICEFLOW_CS_SPEC_ {
typedef struct _TCP_HEADER {
unsigned short usSrcPort;
unsigned short usDestPort;
ULONG ulSeqNumber;
ULONG ulAckNumber;
unsigned long ulSeqNumber;
unsigned long ulAckNumber;
UCHAR HeaderLength;
UCHAR ucFlags;
unsigned short usWindowsSize;
Expand Down

0 comments on commit edb9ebb

Please sign in to comment.