Fix Dead Store (Dead nested assignment) Warning found by Clang

git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@36758 f5534014-38df-0310-8fa8-9805f1628bb7
This commit is contained in:
alagoutte 2011-04-21 13:33:43 +00:00
parent 87b1ef21c8
commit 783ae8cae3
1 changed files with 1 additions and 1 deletions

View File

@ -364,7 +364,7 @@ void dissect_ppi_gps(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree) {
guint32 t_herr, t_verr, t_terr;
guint32 t_appspecific_num;
/* initialize the timestamp value(s) */
gps_timestamp.secs = gps_timestamp.nsecs = gps_time_size = already_processed_fractime = 0;
gps_timestamp.secs = gps_timestamp.nsecs = already_processed_fractime = 0;
/* Clear out stuff in the info column */
if (check_col(pinfo->cinfo,COL_INFO))