sick

sign and check files using ed25519
Log | Files | Refs | Submodules | README | LICENSE

commit 414648b3011b742fb82ee6e2f997973d43184345
parent 4b03fa5a2808b3ed5ca9aac689e2494ded2a4b20
Author: z3bra <willyatmailoodotorg>
Date:   Mon May 16 12:12:51 +12000

Set error values explicitely

Diffstat:
sick.c | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/sick.c b/sick.c @@ -18,9 +18,9 @@ enum { }; enum { - ERR_NOKEY, - ERR_NOSIG, - ERR_NOMSG + ERR_NOKEY = 1, + ERR_NOSIG = 2, + ERR_NOMSG = 3 }; static void usage();