diff options
| author | Mathieu Malaterre <mathieu.malaterre@gmail.com> | 2014-03-10 08:25:08 +0000 |
|---|---|---|
| committer | Mathieu Malaterre <mathieu.malaterre@gmail.com> | 2014-03-10 08:25:08 +0000 |
| commit | e02ba05034de2d4bfb68419b0e4819441f9166e7 (patch) | |
| tree | e3b5dba6617d256c6461cd7a27546913169fed0c /src/lib | |
| parent | b4789129102adc8f0fbfe9c22230c196ecd39c03 (diff) | |
[trunk] Fix warnings about shadow variables
Diffstat (limited to 'src/lib')
| -rw-r--r-- | src/lib/openjpip/jp2k_encoder.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/openjpip/jp2k_encoder.c b/src/lib/openjpip/jp2k_encoder.c index a80b037f..f73a1f5a 100644 --- a/src/lib/openjpip/jp2k_encoder.c +++ b/src/lib/openjpip/jp2k_encoder.c @@ -608,14 +608,14 @@ Byte8_t comp_seqID( Byte8_t tileID, SIZmarker_param_t SIZ, CODmarker_param_t COD return seqID; } -Byte8_t get_last_tileID( msgqueue_param_t *msgqueue, Byte8_t csn, OPJ_BOOL isJPPstream) +Byte8_t get_last_tileID( msgqueue_param_t *msgqueue, Byte8_t csn, OPJ_BOOL isjppstream) { Byte8_t last_tileID = 0; message_param_t *msg; msg = msgqueue->first; while( msg){ - if( isJPPstream){ + if( isjppstream){ if((msg->class_id == TILE_HEADER_MSG) && msg->csn == csn && last_tileID < msg->in_class_id) last_tileID = msg->in_class_id; } |
