Fix Dead Store (Dead nested assignment) Warning found by Clang
authoralagoutte <alagoutte@f5534014-38df-0310-8fa8-9805f1628bb7>
Thu, 21 Apr 2011 13:33:43 +0000 (13:33 +0000)
committeralagoutte <alagoutte@f5534014-38df-0310-8fa8-9805f1628bb7>
Thu, 21 Apr 2011 13:33:43 +0000 (13:33 +0000)
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@36758 f5534014-38df-0310-8fa8-9805f1628bb7

epan/dissectors/packet-ppi-gps.c

index 2c20a42c34e403704d818cdb41282ecca0165e1d..a01fc7fb3a07ea3fa34113abdaff71abe14c78d0 100644 (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))