diff options
| author | Even Rouault <even.rouault@spatialys.com> | 2017-09-19 12:13:34 +0200 |
|---|---|---|
| committer | Even Rouault <even.rouault@spatialys.com> | 2017-09-19 12:13:34 +0200 |
| commit | 18f6696372f4c32334385f8dcc8d39ad8ac24601 (patch) | |
| tree | e5c028524e64e82684f47a87fcdeffb861e2361c /src | |
| parent | 3dfc6ca2bcf06fd1adb6b6b4cecc6c092f08ba0b (diff) | |
Fix compilation with AppleClang 8.1.0.8020042 (#1020)
Diffstat (limited to 'src')
| -rw-r--r-- | src/lib/openjp2/j2k.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/openjp2/j2k.c b/src/lib/openjp2/j2k.c index 0dad1503..3e2bb749 100644 --- a/src/lib/openjp2/j2k.c +++ b/src/lib/openjp2/j2k.c @@ -9241,7 +9241,7 @@ OPJ_BOOL opj_j2k_set_decode_area(opj_j2k_t *p_j2k, OPJ_UINT32 it_comp; if (p_j2k->m_cp.tw == 1 && p_j2k->m_cp.th == 1 && - &p_j2k->m_cp.tcps[0].m_data != NULL) { + p_j2k->m_cp.tcps[0].m_data != NULL) { /* In the case of a single-tiled image whose codestream we have already */ /* ingested, go on */ } |
