diff options
| author | Mathieu Malaterre <mathieu.malaterre@gmail.com> | 2012-10-01 15:29:36 +0000 |
|---|---|---|
| committer | Mathieu Malaterre <mathieu.malaterre@gmail.com> | 2012-10-01 15:29:36 +0000 |
| commit | 394db7b7382ee5b868b193febae6b119ff03c59c (patch) | |
| tree | 77ec7662201c802395d821f3c7d4b6856f5251af /src/lib/openjp2/tcd.c | |
| parent | 3ad58ee1f5df589646d11b3088788f05b089fa6b (diff) | |
[trunk] Remove old function tgt_create
Fix some warnings about size_t
Diffstat (limited to 'src/lib/openjp2/tcd.c')
| -rw-r--r-- | src/lib/openjp2/tcd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/openjp2/tcd.c b/src/lib/openjp2/tcd.c index d7725141..e7ad8031 100644 --- a/src/lib/openjp2/tcd.c +++ b/src/lib/openjp2/tcd.c @@ -919,7 +919,7 @@ opj_bool FUNCTION ( opj_tcd_v2_t *p_tcd, \ } \ \ if (! l_current_precinct->incltree) { \ - l_current_precinct->incltree = tgt_create_v2(l_current_precinct->cw, \ + l_current_precinct->incltree = tgt_create(l_current_precinct->cw, \ l_current_precinct->ch); \ } \ else{ \ @@ -934,7 +934,7 @@ opj_bool FUNCTION ( opj_tcd_v2_t *p_tcd, \ } \ \ if (! l_current_precinct->imsbtree) { \ - l_current_precinct->imsbtree = tgt_create_v2( \ + l_current_precinct->imsbtree = tgt_create( \ l_current_precinct->cw, \ l_current_precinct->ch); \ } \ |
