diff options
| author | Mickael Savinaud <savmickael@users.noreply.github.com> | 2011-08-11 08:37:11 +0000 |
|---|---|---|
| committer | Mickael Savinaud <savmickael@users.noreply.github.com> | 2011-08-11 08:37:11 +0000 |
| commit | e3e2dc1f6e5045ba7b180a7917b5b91a3a9b9e31 (patch) | |
| tree | 3ee8712eb3e577e49927c077d8379ec12b79e022 /libopenjpeg | |
| parent | 4f329cbb450e3f8934aa6a378b92e615ca7957a7 (diff) | |
fixed build error with position of variable declaration after patch 856
Diffstat (limited to 'libopenjpeg')
| -rw-r--r-- | libopenjpeg/j2k.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libopenjpeg/j2k.c b/libopenjpeg/j2k.c index 32e8bd95..a07951ad 100644 --- a/libopenjpeg/j2k.c +++ b/libopenjpeg/j2k.c @@ -1861,10 +1861,10 @@ opj_image_t* j2k_decode_jpt_stream(opj_j2k_t *j2k, opj_cio_t *cio, opj_codestre opj_image_t *image = NULL; opj_jpt_msg_header_t header; int position; + opj_common_ptr cinfo = j2k->cinfo; OPJ_ARG_NOT_USED(cstr_info); - opj_common_ptr cinfo = j2k->cinfo; j2k->cio = cio; /* create an empty image */ |
