changeset 6408:c7b869ce2879

Whitespace fix, from Bruno.
author Simon Josefsson <simon@josefsson.org>
date Fri, 21 Oct 2005 12:45:42 +0000
parents 01bbdf942804
children faf42a2c7a24
files lib/md4.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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.