]> git.sesse.net Git - vlc/commitdiff
Cleanup indentation
authorJean-Paul Saman <jpsaman@videolan.org>
Sat, 14 Jun 2008 11:56:02 +0000 (13:56 +0200)
committerJean-Paul Saman <jpsaman@videolan.org>
Sat, 14 Jun 2008 14:19:22 +0000 (16:19 +0200)
include/vlc_configuration.h

index d607d249273d29a93efc4e0978100003913ba1fc..b9c047fa397ed8ad9cedc5c0012b0c861bb55359 100644 (file)
@@ -173,22 +173,22 @@ struct module_config_t
     int            i_action;                           /* actions list size */
 
     /* Misc */
-    vlc_mutex_t *p_lock;            /* Lock to use when modifying the config */
-    bool   b_dirty;          /* Dirty flag to indicate a config change */
-    bool   b_advanced;          /* Flag to indicate an advanced option */
-    bool   b_internal;   /* Flag to indicate option is not to be shown */
-    bool   b_restart;   /* Flag to indicate the option needs a restart */
+    vlc_mutex_t *p_lock;           /* Lock to use when modifying the config */
+    bool        b_dirty;          /* Dirty flag to indicate a config change */
+    bool        b_advanced;          /* Flag to indicate an advanced option */
+    bool        b_internal;   /* Flag to indicate option is not to be shown */
+    bool        b_restart;   /* Flag to indicate the option needs a restart */
                               /* to take effect */
 
     /* Deprecated */
-    char          *psz_oldname;                          /* Old option name */
-    bool     b_removed;
+    char        *psz_oldname;                          /* Old option name */
+    bool        b_removed;
 
     /* Option values loaded from config file */
-    bool   b_autosave;      /* Config will be auto-saved at exit time */
-    bool   b_unsaveable;                /* Config should not be saved */
+    bool        b_autosave;      /* Config will be auto-saved at exit time */
+    bool        b_unsaveable;                /* Config should not be saved */
 
-    bool   b_safe;
+    bool        b_safe;
 };
 
 /*****************************************************************************