summaryrefslogtreecommitdiff
path: root/src/lib/openjp2
diff options
context:
space:
mode:
authormayeut <mayeut@users.noreply.github.com>2016-01-03 02:09:04 +0100
committermayeut <mayeut@users.noreply.github.com>2016-01-03 02:09:04 +0100
commit2e4fadf330c1039d2181e6ba05c80f1cff6d0947 (patch)
treec14ca7b6d2765dcafd59e219249913de7344f6f9 /src/lib/openjp2
parent51cbcd5748cd64832a578dfa30e630fdd79c2775 (diff)
parent8f9905936cef1427f9372dd192a054b3c852232a (diff)
Merge remote-tracking branch 'uclouvain/master'
Diffstat (limited to 'src/lib/openjp2')
-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 */