Ooops, how did that slip by? Fix return type of @ghcopy@.
authormdw <mdw>
Sun, 21 Mar 2004 23:52:58 +0000 (23:52 +0000)
committermdw <mdw>
Sun, 21 Mar 2004 23:52:58 +0000 (23:52 +0000)
crc32.c

diff --git a/crc32.c b/crc32.c
index c500a59..7077fa6 100644 (file)
--- a/crc32.c
+++ b/crc32.c
@@ -1,6 +1,6 @@
 /* -*-c-*-
  *
 /* -*-c-*-
  *
- * $Id: crc32.c,v 1.1 2001/04/19 18:26:32 mdw Exp $
+ * $Id: crc32.c,v 1.2 2004/03/21 23:52:58 mdw Exp $
  *
  * Generic hash wrapper for CRC32
  *
  *
  * Generic hash wrapper for CRC32
  *
@@ -30,6 +30,9 @@
 /*----- Revision history --------------------------------------------------* 
  *
  * $Log: crc32.c,v $
 /*----- Revision history --------------------------------------------------* 
  *
  * $Log: crc32.c,v $
+ * Revision 1.2  2004/03/21 23:52:58  mdw
+ * Ooops, how did that slip by?  Fix return type of @ghcopy@.
+ *
  * Revision 1.1  2001/04/19 18:26:32  mdw
  * Add CRC as another hash function.
  *
  * Revision 1.1  2001/04/19 18:26:32  mdw
  * Add CRC as another hash function.
  *
@@ -85,7 +88,7 @@ static void ghdestroy(ghash *h)
   S_DESTROY(g);
 }
 
   S_DESTROY(g);
 }
 
-static void ghcopy(ghash *h)
+static ghash *ghcopy(ghash *h)
 {
   gctx *g = (gctx *)h;
   gctx *gg = S_CREATE(gctx);
 {
   gctx *g = (gctx *)h;
   gctx *gg = S_CREATE(gctx);