summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Christian Hesse <mail@eworm.de>2013-12-11 11:37:24 +0100
committerGravatar Christian Hesse <mail@eworm.de>2013-12-11 11:37:24 +0100
commit24affbeb71aa4fcd6885e2a773c7c19d29983c07 (patch)
tree12bd182b5371b32f61c2729b406b9c311e7a282f
parent7483b2467b1937024396a43aa42f96710462cb03 (diff)
downloadnthash-24affbeb71aa4fcd6885e2a773c7c19d29983c07.tar.gz
nthash-24affbeb71aa4fcd6885e2a773c7c19d29983c07.tar.zst
remove trailing white spaces
-rw-r--r--nthash.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/nthash.c b/nthash.c
index 6cd069b..1470b7c 100644
--- a/nthash.c
+++ b/nthash.c
@@ -12,9 +12,9 @@
#include <stdlib.h>
#include <string.h>
#include <iconv.h>
-
+
#include <nettle/md4.h>
-
+
#define BUF_SIZE 64
#define TOCODE "UTF-16LE"
#define FROMCODE "UTF-8"
@@ -27,7 +27,7 @@ int main(int argc, char **argv) {
int i, linebreak = 0;
size_t done, inbytes, outbytes;
iconv_t conv;
-
+
md4_init(&ctx);
while (1) {
done = inbytes = fread(buffer, 1, BUF_SIZE, stdin);