Alexis La Goutte
changed
bug 9167
What |
Removed |
Added |
Attachment #12325 Flags |
|
review_for_checkin-
|
Comment # 7
on bug 9167
from Alexis La Goutte
Comment on attachment 12325 [details]
Patch #2
+static guint get_rtps_message_len(packet_info * pinfo, tvbuff_t *tvb, int
offset)
+{
+ gboolean little_endian;
+ guint32 length;
+ guint16 vendor_id;
+ guint8 flags;
+ guint8 major;
+ guint8 minor;
+
+ (void) pinfo;
About (void) pinfo,
you should use _U_ in function :
+static guint get_rtps_message_len(packet_info * pinfo _U_, tvbuff_t *tvb, int
offset)
You are receiving this mail because:
- You are watching all bug changes.