aboutsummaryrefslogtreecommitdiffstats
path: root/editcap.c
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2013-09-16 07:56:04 +0000
committerAlexis La Goutte <alexis.lagoutte@gmail.com>2013-09-16 07:56:04 +0000
commit58e4750ecbf593fb678c713da398979b7fb2ed5d (patch)
tree8cf800f9f3ac04f0d8d46e5299728405dd59e0e4 /editcap.c
parent9bde18734fd1f13bccdf0b9496452547125fc467 (diff)
Fix some Dead Store (Dead assignement/Dead increment) Warning found by Clang
svn path=/trunk/; revision=52097
Diffstat (limited to 'editcap.c')
-rw-r--r--editcap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/editcap.c b/editcap.c
index 3a7b67e29c..60f953fdaf 100644
--- a/editcap.c
+++ b/editcap.c
@@ -1724,7 +1724,7 @@ handle_chopping(chop_t chop, struct wtap_pkthdr *out_phdr,
else
out_phdr->len = 0;
}
- in_phdr = out_phdr;
+ /*in_phdr = out_phdr;*/
}
}