• O
    storage_conf: Fix the coding stype in storage_conf.c · c8a3cf89
    Osier Yang 提交于
    Changes:
      * Remove the useless space in "for" statement (e.g.
        for (i = 0 ; i < something ; i++)
    
      * Change the function's style to:
        void
        foo(bar)
        {
            printf("foo is not bar\n");
        }
    
      * Don't lose "{}" for "if...else" branches if one of the branch
        has more than one line block. Example of the old ones:
        if (a) {
            printf("a is not funny");
        } else
            printf("a is funny");
    
      * Remove the 1 space before "goto" label.
    
      * Remove the useless blank line(s)
    
      * Add blank line if it can make the code more clear to eyes.
    c8a3cf89
storage_conf.c 65.9 KB