factorial: Fix usage message to fit in with conventions.
[u/mdw/catacomb] / md2.c
diff --git a/md2.c b/md2.c
index b93a1b2..08e033f 100644 (file)
--- a/md2.c
+++ b/md2.c
@@ -1,6 +1,6 @@
 /* -*-c-*-
  *
- * $Id: md2.c,v 1.1 2001/02/21 20:03:22 mdw Exp $
+ * $Id: md2.c,v 1.3 2004/04/08 01:36:15 mdw Exp $
  *
  * The MD2 message digest function
  *
  * MA 02111-1307, USA.
  */
 
-/*----- Revision history --------------------------------------------------* 
- *
- * $Log: md2.c,v $
- * Revision 1.1  2001/02/21 20:03:22  mdw
- * Added support for MD2 hash function.
- *
- */
-
 /*----- Header files ------------------------------------------------------*/
 
 #include <mLib/bits.h>
@@ -47,7 +39,7 @@
 
 /*----- Tables ------------------------------------------------------------*/
 
-static octet s[256] = MD2_S;
+static const octet s[256] = MD2_S;
 
 /*----- Main code ---------------------------------------------------------*/