summaryrefslogtreecommitdiff
path: root/extcap/extcap-base.c
diff options
context:
space:
mode:
Diffstat (limited to 'extcap/extcap-base.c')
-rw-r--r--extcap/extcap-base.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/extcap/extcap-base.c b/extcap/extcap-base.c
index ecfd8f58e6..f344d2edd4 100644
--- a/extcap/extcap-base.c
+++ b/extcap/extcap-base.c
@@ -272,6 +272,7 @@ static void extcap_help_option_free(gpointer option)
extcap_option_t* o = (extcap_option_t*)option;
g_free(o->optname);
g_free(o->optdesc);
+ g_free(o);
}
void extcap_base_cleanup(extcap_parameters ** extcap)
@@ -334,10 +335,10 @@ void extcap_help_add_header(extcap_parameters * extcap, char * help_header)
*
* Local variables:
* c-basic-offset: 4
- * tab-width: 8
- * indent-tabs-mode: t
+ * tab-width: 4
+ * indent-tabs-mode: nil
* End:
*
- * vi: set shiftwidth=4 tabstop=8 noexpandtab:
- * :indentSize=4:tabSize=8:noTabs=false:
+ * vi: set shiftwidth=4 tabstop=4 expandtab:
+ * :indentSize=4:tabSize=4:noTabs=true:
*/