Whitespace fix, from Bruno.
authorSimon Josefsson <simon@josefsson.org>
Fri, 21 Oct 2005 12:45:42 +0000 (12:45 +0000)
committerSimon Josefsson <simon@josefsson.org>
Fri, 21 Oct 2005 12:45:42 +0000 (12:45 +0000)
lib/md4.c

index 571ad16..fcade30 100644 (file)
--- a/lib/md4.c
+++ b/lib/md4.c
@@ -49,7 +49,7 @@
 
 /* This array contains the bytes used to pad the buffer to the next
    64-byte boundary.  (RFC 1320, 3.1: Step 1)  */
-static const unsigned char fillbuf[64] = { 0x80, 0 /* , 0, 0, ...  */  };
+static const unsigned char fillbuf[64] = { 0x80, 0 /* , 0, 0, ...  */ };
 
 
 /* Initialize structure containing state of computation.