URI: 
       passwd: fix function def style - ubase - suckless linux base utils
  HTML git clone git://git.suckless.org/ubase
   DIR Log
   DIR Files
   DIR Refs
   DIR README
   DIR LICENSE
       ---
   DIR commit fa7ae96e0fc8963b0fdd179f0555b66c424555f4
   DIR parent 5b16e8a4eb5075155ff87ec5595abeb705a6aab4
  HTML Author: sin <sin@2f30.org>
       Date:   Sun, 24 Apr 2016 17:46:53 +0100
       
       passwd: fix function def style
       
       Diffstat:
         M passwd.c                            |       4 ++--
       
       1 file changed, 2 insertions(+), 2 deletions(-)
       ---
   DIR diff --git a/passwd.c b/passwd.c
       @@ -81,8 +81,8 @@ cleanup:
                return r;
        }
        
       -static
       -int pw_write_file(FILE *fp, const struct passwd *pw, char *pwhash) {
       +static int
       +pw_write_file(FILE *fp, const struct passwd *pw, char *pwhash) {
                struct passwd *pwent;
                int r = -1, w = 0;
                FILE *tfp = NULL;