Merge pull request #679 from stweil/grammar

Fix grammar in comment
This commit is contained in:
Matthieu Darbois 2015-12-31 11:45:51 +01:00
commit 8f9905936c
1 changed files with 1 additions and 1 deletions

View File

@ -115,7 +115,7 @@ static INLINE void *opj_aligned_realloc_n(void *ptr, size_t alignment, size_t ne
/* no portable aligned realloc */
#if defined(OPJ_HAVE_POSIX_MEMALIGN) || defined(OPJ_HAVE_MEMALIGN)
/* glibc doc states one can mixed aligned malloc with realloc */
/* glibc doc states one can mix aligned malloc with realloc */
r_ptr = realloc( ptr, new_size ); /* fast path */
/* we simply use `size_t` to cast, since we are only interest in binary AND
* operator */