summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorStephan Mühlstrasser <stm@pdflib.com>2016-07-27 10:09:54 +0200
committerStephan Mühlstrasser <stm@pdflib.com>2016-07-27 10:09:54 +0200
commit54874194a88997c2492fe1206203047739266dff (patch)
tree3f5b956ca45be06b8d4b788c4858f2df05132fed /src
parentd2d35bf6c2119cd39a298f57b03bf9e17d36946b (diff)
Unified bit-field declaration, removed tabs.
Diffstat (limited to 'src')
-rw-r--r--src/lib/openjp2/j2k.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/openjp2/j2k.h b/src/lib/openjp2/j2k.h
index cc725b79..d6cb958b 100644
--- a/src/lib/openjp2/j2k.h
+++ b/src/lib/openjp2/j2k.h
@@ -497,9 +497,9 @@ typedef struct opj_j2k_dec
*/
OPJ_BOOL m_last_tile_part;
/** to tell that a tile can be decoded. */
- OPJ_BITFIELD m_can_decode : 1;
- OPJ_BITFIELD m_discard_tiles : 1;
- OPJ_BITFIELD m_skip_data : 1;
+ OPJ_BITFIELD m_can_decode : 1;
+ OPJ_BITFIELD m_discard_tiles : 1;
+ OPJ_BITFIELD m_skip_data : 1;
/** TNsot correction : see issue 254 **/
OPJ_BITFIELD m_nb_tile_parts_correction_checked : 1;
OPJ_BITFIELD m_nb_tile_parts_correction : 1;