[hackers] [sbase] Fix style issue in crypt.c || sin

From: <git_AT_suckless.org>
Date: Fri, 04 Apr 2014 12:10:22 +0200

commit 81f9cf2a33ddda691a774f96b4280e3a00de6f28
Author: sin <sin_AT_2f30.org>
Date: Fri Apr 4 11:09:46 2014 +0100

    Fix style issue in crypt.c

diff --git a/util/crypt.c b/util/crypt.c
index cd24e93..fffdd55 100644
--- a/util/crypt.c
+++ b/util/crypt.c
_AT_@ -8,7 +8,8 @@
 #include "../crypt.h"
 
 static int
-hexdec(int c) {
+hexdec(int c)
+{
         if(c >= '0' && c <= '9')
                 return c - '0';
         else if(c >= 'A' && c <= 'F')
_AT_@ -19,7 +20,8 @@ hexdec(int c) {
 }
 
 static int
-mdcheckline(const char *s, uint8_t *md, size_t sz) {
+mdcheckline(const char *s, uint8_t *md, size_t sz)
+{
         size_t i;
         int b1, b2;
 
Received on Fri Apr 04 2014 - 12:10:22 CEST

This archive was generated by hypermail 2.3.0 : Fri Apr 04 2014 - 12:12:20 CEST