summaryrefslogtreecommitdiff
path: root/wiretap/lanalyzer.c
diff options
context:
space:
mode:
authorJakub Zawadzki <darkjames-ws@darkjames.pl>2012-04-13 20:22:31 +0000
committerJakub Zawadzki <darkjames-ws@darkjames.pl>2012-04-13 20:22:31 +0000
commit8a1dc57c031880fa47475539ce961df5e658aee1 (patch)
treed7fda2fde39fe510c04d5003b8b6780008472a2a /wiretap/lanalyzer.c
parent8fd3fcfd7879b6297f5cf622e4651cb34e658f54 (diff)
downloadwireshark-8a1dc57c031880fa47475539ce961df5e658aee1.tar.gz
Remove doubled semicolons and semicolons outside function.
svn path=/trunk/; revision=42053
Diffstat (limited to 'wiretap/lanalyzer.c')
-rw-r--r--wiretap/lanalyzer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/wiretap/lanalyzer.c b/wiretap/lanalyzer.c
index 75331c665b..498855bbef 100644
--- a/wiretap/lanalyzer.c
+++ b/wiretap/lanalyzer.c
@@ -341,7 +341,7 @@ int lanalyzer_open(wtap *wth, int *err, gchar **err_info)
* Let's get some info from it. Note that we get wth->snapshot_length
* from a record later in the file. */
wth->file_type = WTAP_FILE_LANALYZER;
- lanalyzer = (lanalyzer_t *)g_malloc(sizeof(lanalyzer_t));;
+ lanalyzer = (lanalyzer_t *)g_malloc(sizeof(lanalyzer_t));
wth->priv = (void *)lanalyzer;
wth->subtype_read = lanalyzer_read;
wth->subtype_seek_read = lanalyzer_seek_read;