diff options
author | Daan <daan@microsoft.com> | 2019-06-22 08:20:07 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-22 08:20:07 -0700 |
commit | 8ba50d63f280b92d24100a5942979f83295e0c5c (patch) | |
tree | 4f848db1a3963163bd1228248234a649f0ab1981 /src/page-queue.c | |
parent | 6208e51415afb0f0336f7b231b55db7adddf49ab (diff) | |
parent | def97b0fd14dbdabad5a8c1a9e4ac56ee5bd51bb (diff) |
Merge pull request #1 from chosungmann/fix-spelling-errors
Fix spelling errors
Diffstat (limited to 'src/page-queue.c')
-rw-r--r-- | src/page-queue.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/page-queue.c b/src/page-queue.c index a879a31..fdd5b01 100644 --- a/src/page-queue.c +++ b/src/page-queue.c @@ -18,13 +18,13 @@ terms of the MIT license. A copy of the license can be found in the file ----------------------------------------------------------- */ #if (MI_MAX_ALIGN_SIZE > 4*MI_INTPTR_SIZE) - #error "define aligment for more than 4x word size for this platform" + #error "define alignment for more than 4x word size for this platform" #elif (MI_MAX_ALIGN_SIZE > 2*MI_INTPTR_SIZE) #define MI_ALIGN4W // 4 machine words minimal alignment #elif (MI_MAX_ALIGN_SIZE > MI_INTPTR_SIZE) #define MI_ALIGN2W // 2 machine words minimal alignment #else - // ok, default aligment is 1 word + // ok, default alignment is 1 word #endif |