Commit e6f0b961 authored by Yukihiro "Matz" Matsumoto's avatar Yukihiro "Matz" Matsumoto

Merge pull request #110 from takeru/typo-ALLOC_ALLOC

fix typo
parents bcd24af1 7f12cb9e
...@@ -18,7 +18,7 @@ ...@@ -18,7 +18,7 @@
#define POOL_PAGE_SIZE 16000 #define POOL_PAGE_SIZE 16000
#ifdef ALLOC_ALIGN #ifdef ALLOC_ALIGN
# define ALIGN_PADDING(x) ((x % ALLOC_ALIGN) ? ALLOC_ALIGN - (x % ALLOC_ALLOC) : 0) # define ALIGN_PADDING(x) ((x % ALLOC_ALIGN) ? ALLOC_ALIGN - (x % ALLOC_ALIGN) : 0)
#else #else
# define ALIGN_PADDING(x) (0) # define ALIGN_PADDING(x) (0)
#endif #endif
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment