Commit 49d8436a authored by piman@chromium.org's avatar piman@chromium.org

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
parent ae5d37fe
...@@ -7,12 +7,11 @@ ...@@ -7,12 +7,11 @@
namespace flip { namespace flip {
const int kStreamIdMask = 0x7fffffff; // StreamId mask from the FlipHeader const unsigned int kStreamIdMask = 0x7fffffff; // StreamId mask from the FlipHeader
const int kControlFlagMask = 0x8000; // Control flag mask from the FlipHeader const unsigned int kControlFlagMask = 0x8000; // Control flag mask from the FlipHeader
const int kPriorityMask = 0xc0; // Priority mask from the SYN_FRAME const unsigned int kPriorityMask = 0xc0; // Priority mask from the SYN_FRAME
const int kLengthMask = 0xffffff; // Mask the lower 24 bits. const unsigned int kLengthMask = 0xffffff; // Mask the lower 24 bits.
} // flip } // flip
#endif // NET_FLIP_FLIP_BITMASKS_H_ #endif // NET_FLIP_FLIP_BITMASKS_H_
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