Make the Windows buildbot happy: guint8 -> guint16 for flags variable in

definition of tcp_analyze_sequence_number(). 


svn path=/trunk/; revision=34086
This commit is contained in:
Stephen Fisher 2010-09-08 21:11:45 +00:00
parent e12fc91a33
commit b17b2eb187

View file

@ -599,7 +599,7 @@ tcp_analyze_get_acked_struct(guint32 frame, gboolean createflag, struct tcp_anal
*
*/
static void
tcp_analyze_sequence_number(packet_info *pinfo, guint32 seq, guint32 ack, guint32 seglen, guint8 flags, guint32 window, struct tcp_analysis *tcpd)
tcp_analyze_sequence_number(packet_info *pinfo, guint32 seq, guint32 ack, guint32 seglen, guint16 flags, guint32 window, struct tcp_analysis *tcpd)
{
tcp_unacked_t *ual=NULL;
tcp_unacked_t *prevual=NULL;