]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
SourceFormat Enforcement
authorAutomatic source maintenance <squidadm@squid-cache.org>
Sat, 16 Nov 2013 01:14:32 +0000 (18:14 -0700)
committerAutomatic source maintenance <squidadm@squid-cache.org>
Sat, 16 Nov 2013 01:14:32 +0000 (18:14 -0700)
src/tests/stub_mem.cc

index 17a8d3c5fbb1496f3e833fb1a1fce98a9a45d43c..901a6e0a80114f0ce652972d340b317e1e2768f8 100644 (file)
@@ -59,11 +59,13 @@ memFreeBufFunc(size_t size)
     return cxx_xfree;
 }
 
-void * memAllocate(mem_type type) {
+void * memAllocate(mem_type type)
+{
     // let's waste plenty of memory. This should cover any possible need
     return xmalloc(64*1024);
 }
-void memFree(void *p, int type) {
+void memFree(void *p, int type)
+{
     xfree(p);
 }
 void Mem::Init(void) STUB_NOP