aboutsummaryrefslogtreecommitdiffstats
path: root/wsutil/clopts_common.c
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2014-10-14 11:12:16 -0400
committerBill Meier <wmeier@newsguy.com>2014-10-14 16:45:09 +0000
commit10b83e6931debe1f1f2ea4edce86ddf168995e51 (patch)
treefb8b987b896ded10ce6e1f9a4fa344ccdd987515 /wsutil/clopts_common.c
parent2359e67f9c42cc285935c70fe8e9cc6b9f369797 (diff)
Add editor-modelines; adjust whitespace.
Change-Id: I8cad872cee972a6d22a72852dac57fd188daca84 Reviewed-on: https://code.wireshark.org/review/4683 Reviewed-by: Bill Meier <wmeier@newsguy.com>
Diffstat (limited to 'wsutil/clopts_common.c')
-rw-r--r--wsutil/clopts_common.c15
1 files changed, 14 insertions, 1 deletions
diff --git a/wsutil/clopts_common.c b/wsutil/clopts_common.c
index 8b1878758b..d3eccff7ba 100644
--- a/wsutil/clopts_common.c
+++ b/wsutil/clopts_common.c
@@ -47,7 +47,7 @@ get_natural_int(const char *string, const char *name)
}
if (number > INT_MAX) {
cmdarg_err("The specified %s \"%s\" is too large (greater than %d)",
- name, string, INT_MAX);
+ name, string, INT_MAX);
exit(1);
}
return (int)number;
@@ -68,3 +68,16 @@ get_positive_int(const char *string, const char *name)
return number;
}
+
+/*
+ * Editor modelines - http://www.wireshark.org/tools/modelines.html
+ *
+ * Local Variables:
+ * c-basic-offset: 2
+ * tab-width: 8
+ * indent-tabs-mode: nil
+ * End:
+ *
+ * ex: set shiftwidth=2 tabstop=8 expandtab:
+ * :indentSize=2:tabSize=8:noTabs=true:
+ */