commit b533625aac2522828e22cdfabb4d9a902c709860
Author: sin <[email protected]>
AuthorDate: Mon Dec 14 11:58:23 2015 +0000
Commit: sin <[email protected]>
CommitDate: Mon Dec 14 11:59:48 2015 +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.
diff --git a/whoami.c b/whoami.c
index 4d88aea..11ee7e2 100644
--- 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;