]> arthur.barton.de Git - netdata.git/blobdiff - src/main.h
converted tabs for C, JS, BASH to 4 spaces
[netdata.git] / src / main.h
index b1acf8a6abc02dc0392d79d2a5c518df6130d300..646827fbd919de42422a70e0869d5eb19f823a34 100644 (file)
@@ -7,15 +7,15 @@ extern volatile sig_atomic_t netdata_exit;
  * This struct contains information about command line options.
  */
 struct option_def {
-       /** The option character */
-       const char val;
-       /** The name of the long option. */
-       const char *description;
-       /** Short descripton what the option does */
-       /** Name of the argument displayed in SYNOPSIS */
-       const char *arg_name;
-       /** Default value if not set */
-       const char *default_value;
+    /** The option character */
+    const char val;
+    /** The name of the long option. */
+    const char *description;
+    /** Short descripton what the option does */
+    /** Name of the argument displayed in SYNOPSIS */
+    const char *arg_name;
+    /** Default value if not set */
+    const char *default_value;
 };
 
 /**