diff options
author | Alexis La Goutte <alexis.lagoutte@gmail.com> | 2013-04-07 15:57:36 +0000 |
---|---|---|
committer | Alexis La Goutte <alexis.lagoutte@gmail.com> | 2013-04-07 15:57:36 +0000 |
commit | 5dcc13489b7bccd1efa01f17c8c43c7b02c8289c (patch) | |
tree | 0d40c09aec723bf970d9f0ac4ba0749133f5d461 /airpcap_loader.c | |
parent | b828c33c23bbb31193e1fa6f031af30639c8b203 (diff) | |
download | wireshark-5dcc13489b7bccd1efa01f17c8c43c7b02c8289c.tar.gz wireshark-5dcc13489b7bccd1efa01f17c8c43c7b02c8289c.tar.bz2 wireshark-5dcc13489b7bccd1efa01f17c8c43c7b02c8289c.zip |
Fix some Dead Store (Dead assignement/Dead increment) Warning found by Clang
svn path=/trunk/; revision=48771
Diffstat (limited to 'airpcap_loader.c')
-rw-r--r-- | airpcap_loader.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/airpcap_loader.c b/airpcap_loader.c index 55304f7e3a..f2b2d891ce 100644 --- a/airpcap_loader.c +++ b/airpcap_loader.c @@ -2533,3 +2533,16 @@ get_runtime_airpcap_version(GString *str) vrev, build); } #endif /* HAVE_AIRPCAP */ + +/* + * Editor modelines - http://www.wireshark.org/tools/modelines.html + * + * Local variables: + * c-basic-offset: 4 + * tab-width: 8 + * indent-tabs-mode: nil + * End: + * + * vi: set shiftwidth=4 tabstop=8 expandtab: + * :indentSize=4:tabSize=8:noTabs=true: + */ |