endrilo

Implementation of the endrilo cipher in c
git clone https://noxz.tech/git/endrilo.git
Log | Files

commit: 6da30409e7ad101e2160bf207cccc4a524d66bb2
parent: 2a71881538c0c43d7c247221569262899280fdd4
author: Chris Noxz <chris@noxz.tech>
date:   Thu, 27 Feb 2020 21:26:08 +0100
Add line break for 'usage'
Mendrilo.c2+-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/endrilo.c b/endrilo.c
@@ -123,7 +123,7 @@ main(int argc, char *argv[])
     while ((c = getopt(argc, argv, "dh")) != -1) {
          switch (c) {
          case 'd': doencode = 0; break;
-         case 'h': printf(usage); exit(0); break;
+         case 'h': printf("%s\n", usage); exit(0); break;
          }
     }