JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
Fix indentation when defining variables.
authorTiago Cunha <tcunha@gmx.com>
Thu, 2 Feb 2012 23:25:29 +0000 (23:25 +0000)
committerTiago Cunha <tcunha@gmx.com>
Thu, 2 Feb 2012 23:43:27 +0000 (23:43 +0000)
Prompted by marco.

scrotwm.c

index a0f7e05..10b638c 100644 (file)
--- a/scrotwm.c
+++ b/scrotwm.c
@@ -501,7 +501,7 @@ struct quirk {
 #define SWM_Q_FOCUSPREV                (1<<5)  /* focus on caller */
 };
 TAILQ_HEAD(quirk_list, quirk);
-struct quirk_list      quirks = TAILQ_HEAD_INITIALIZER(quirks);
+struct quirk_list              quirks = TAILQ_HEAD_INITIALIZER(quirks);
 
 /*
  * Supported EWMH hints should be added to
@@ -5031,7 +5031,7 @@ parsequirks(char *qstr, unsigned long *quirk)
 void
 quirk_insert(const char *class, const char *name, unsigned long quirk)
 {
-       struct quirk    *qp;
+       struct quirk            *qp;
 
        DNPRINTF(SWM_D_QUIRK, "quirk_insert: %s:%s [%lu]\n", class, name,
            quirk);
@@ -5079,7 +5079,7 @@ quirk_replace(struct quirk *qp, const char *class, const char *name,
 void
 setquirk(const char *class, const char *name, unsigned long quirk)
 {
-       struct quirk    *qp;
+       struct quirk            *qp;
 
        DNPRINTF(SWM_D_QUIRK, "setquirk: enter %s:%s [%lu]\n", class, name,
           quirk);