"ulong" isn't defined on MacOS X (and probably isn't defined on some
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>
Sat, 2 Mar 2002 07:22:20 +0000 (07:22 +0000)
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>
Sat, 2 Mar 2002 07:22:20 +0000 (07:22 +0000)
commit99c3dae1192cb1f8771d5e6d07beea88523edb8d
tree905701ea1c9bd0bc750a43db2c0cdcc11b453387
parent89f144cdf5b317c85c5efb2e0bf7f31b71521aec
"ulong" isn't defined on MacOS X (and probably isn't defined on some
other platforms, either) - don't use it.  Instead, use "guint32", as the
item in question is a 32-bit unsigned integer.

In fact, it's a 32-bit unsigned integer containing a bit set, and the
data type isn't a "long", so print it with "0x%08x", rather than
"0x%04lx", so that all 8 hex digits are printed, and so that the format
matches the data type.

It also doesn't have to be initialized - the only code path in which
it's used sets it.

git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@4842 f5534014-38df-0310-8fa8-9805f1628bb7
packet-rsvp.c