diff options
author | piman@chromium.org <piman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-10-26 21:33:30 +0000 |
---|---|---|
committer | piman@chromium.org <piman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-10-26 21:33:30 +0000 |
commit | 49d8436a2b84d7bd90fc76c17b723ad5c89772a7 (patch) | |
tree | ec2a559603acb83233a3d81cc6c58644a936bb44 /net | |
parent | ae5d37fe2c81312675fc1386bef3fc650b723f0c (diff) | |
download | chromium_src-49d8436a2b84d7bd90fc76c17b723ad5c89772a7.zip chromium_src-49d8436a2b84d7bd90fc76c17b723ad5c89772a7.tar.gz chromium_src-49d8436a2b84d7bd90fc76c17b723ad5c89772a7.tar.bz2 |
linux: Fix signed vs unsigned issue
Review URL: http://codereview.chromium.org/297015
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@30099 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net')
-rw-r--r-- | net/flip/flip_bitmasks.h | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/net/flip/flip_bitmasks.h b/net/flip/flip_bitmasks.h index 3123da7..35e7126 100644 --- a/net/flip/flip_bitmasks.h +++ b/net/flip/flip_bitmasks.h @@ -7,12 +7,11 @@ namespace flip { -const int kStreamIdMask = 0x7fffffff; // StreamId mask from the FlipHeader -const int kControlFlagMask = 0x8000; // Control flag mask from the FlipHeader -const int kPriorityMask = 0xc0; // Priority mask from the SYN_FRAME -const int kLengthMask = 0xffffff; // Mask the lower 24 bits. +const unsigned int kStreamIdMask = 0x7fffffff; // StreamId mask from the FlipHeader +const unsigned int kControlFlagMask = 0x8000; // Control flag mask from the FlipHeader +const unsigned int kPriorityMask = 0xc0; // Priority mask from the SYN_FRAME +const unsigned int kLengthMask = 0xffffff; // Mask the lower 24 bits. } // flip #endif // NET_FLIP_FLIP_BITMASKS_H_ - |