summaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
authorMatthieu Darbois <mayeut@users.noreply.github.com>2015-12-31 11:45:51 +0100
committerMatthieu Darbois <mayeut@users.noreply.github.com>2015-12-31 11:45:51 +0100
commit8f9905936cef1427f9372dd192a054b3c852232a (patch)
treec14ca7b6d2765dcafd59e219249913de7344f6f9 /src/lib
parent51efe91971cce3c8f7e0f381ff15fccfc0388807 (diff)
parenta834ab305ffb1af465f94f0781743eaf4c13d01c (diff)
Merge pull request #679 from stweil/grammar
Fix grammar in comment
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/openjp2/opj_malloc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/openjp2/opj_malloc.c b/src/lib/openjp2/opj_malloc.c
index 939d8282..3c8cedf7 100644
--- a/src/lib/openjp2/opj_malloc.c
+++ b/src/lib/openjp2/opj_malloc.c
@@ -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 */