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.
This commit is contained in:
sin 2015-12-14 11:58:23 +00:00
parent 09c279285a
commit b533625aac
1 changed files with 2 additions and 2 deletions

View File

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