Changed the POOL_QALIGN flag to POOL_NO_QALIGN, reversing the setting
[rsync/rsync.git] / lib / pool_alloc.h
index 91bd425..c7368a7 100644 (file)
@@ -1,7 +1,7 @@
 #include <stddef.h>
 
 #define POOL_CLEAR     (1<<0)          /* zero fill allocations        */
-#define POOL_QALIGN    (1<<1)          /* align data to quanta         */
+#define POOL_NO_QALIGN (1<<1)          /* don't align data to quanta   */
 #define POOL_INTERN    (1<<2)          /* Allocate extent structures   */
 #define POOL_PREPEND   (1<<3)          /*   or prepend to extent data  */