]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
memAppend can be void
authorwessels <>
Fri, 23 May 1997 11:15:57 +0000 (11:15 +0000)
committerwessels <>
Fri, 23 May 1997 11:15:57 +0000 (11:15 +0000)
src/stmem.cc

index 1f11d0adc6d846c8f4aa6ee4c75c733c754cc775..9e8bd82b4a18739c01f73786e9c8e1cde91d1e30 100644 (file)
@@ -1,6 +1,6 @@
 
 /*
- * $Id: stmem.cc,v 1.40 1997/05/22 22:18:22 wessels Exp $
+ * $Id: stmem.cc,v 1.41 1997/05/23 05:15:57 wessels Exp $
  *
  * DEBUG: section 19    Memory Primitives
  * AUTHOR: Harvest Derived
@@ -203,7 +203,7 @@ memFreeDataUpto(mem_ptr mem, int target_offset)
 
 
 /* Append incoming data. */
-int
+void
 memAppend(mem_ptr mem, const char *data, int len)
 {
     mem_node p;
@@ -244,7 +244,6 @@ memAppend(mem_ptr mem, const char *data, int len)
        len -= len_to_copy;
        data += len_to_copy;
     }
-    return len;
 }
 
 size_t