]> andersk Git - moira.git/commitdiff
make sure private malloc does longword alignment.
authormar <mar>
Thu, 15 Apr 1993 10:24:38 +0000 (10:24 +0000)
committermar <mar>
Thu, 15 Apr 1993 10:24:38 +0000 (10:24 +0000)
gen/mailhub.dc

index bd03e5c047934ec22cef91520a8dbbc5c8463dfa..4adae8911daca2b02ce5f02ac2bfc20ced3af9d1 100644 (file)
@@ -618,7 +618,7 @@ unsigned size;
     }
     ret = pool;
     pool += size;
-    pool = (char *)(((unsigned) (pool + 1)) & ~1);
+    pool = (char *)(((unsigned) (pool + 3)) & ~3);
     pool_size -= (pool - ret);
     return(ret);
 }
This page took 2.814119 seconds and 5 git commands to generate.