diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2012-05-09 13:59:48 -0700 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2012-05-09 13:59:48 -0700 |
| commit | e6f0b961abb84ea561f98f17d11195dfebd2d2a8 (patch) | |
| tree | 48c54b80a4a112da81b8d412b01200bb04b35ceb /src/pool.c | |
| parent | bcd24af19ce79eff2343cb9a9165c96e24acbfa2 (diff) | |
| parent | 7f12cb9e7aa98e61083bda7ed9adf2d2da647ca4 (diff) | |
| download | mruby-e6f0b961abb84ea561f98f17d11195dfebd2d2a8.tar.gz mruby-e6f0b961abb84ea561f98f17d11195dfebd2d2a8.zip | |
Merge pull request #110 from takeru/typo-ALLOC_ALLOC
fix typo
Diffstat (limited to 'src/pool.c')
| -rw-r--r-- | src/pool.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pool.c b/src/pool.c index adcf3b6b5..649790b2d 100644 --- a/src/pool.c +++ b/src/pool.c @@ -18,7 +18,7 @@ #define POOL_PAGE_SIZE 16000 #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 # define ALIGN_PADDING(x) (0) #endif |
