diff options
author | Duncaen <mail@duncano.de> | 2018-06-22 16:55:44 +0200 |
---|---|---|
committer | Duncaen <mail@duncano.de> | 2018-06-23 02:09:57 +0200 |
commit | 329b6dfeb5abfd2364e288b80e25589af28c6d64 (patch) | |
tree | 8bf84e80b17d699cd1844dca4788e45d7bb18e01 | |
parent | 469b7a38cba68497103915dc2eec87a9b6d343ec (diff) | |
download | runit-void-329b6dfeb5abfd2364e288b80e25589af28c6d64.tar.gz runit-void-329b6dfeb5abfd2364e288b80e25589af28c6d64.tar.xz runit-void-329b6dfeb5abfd2364e288b80e25589af28c6d64.zip |
vlogger: fix exit status
-rw-r--r-- | vlogger.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vlogger.c b/vlogger.c index a2a683e..949fb5b 100644 --- a/vlogger.c +++ b/vlogger.c @@ -169,5 +169,5 @@ main(int argc, char *argv[]) while (fgets(buf, sizeof buf, stdin) != NULL) syslog(level|facility, "%s", buf); - return 1; + return 0; } |