sbase

suckless unix tools
git clone git://git.suckless.org/sbase
Log | Files | Refs | README | LICENSE

commit b533625aac2522828e22cdfabb4d9a902c709860
parent 09c279285ac44ada82c792d88fb246fd98a14e03
Author: sin <sin@2f30.org>
Date:   Mon, 14 Dec 2015 11:58:23 +0000

Fix style issue in whoami which broke the sbase-box target

sbase-box.c:(.text+0xd88): undefined reference to `whoami_main'
collect2: ld returned 1 exit status

Broke the sed magic in Makefile.

Diffstat:
Mwhoami.c | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/whoami.c b/whoami.c @@ -7,13 +7,13 @@ #include "util.h" static void -usage (void) +usage(void) { eprintf("usage: %s\n", argv0); } int -main (int argc, char *argv[]) +main(int argc, char *argv[]) { uid_t uid; struct passwd *pw;