summaryrefslogtreecommitdiff
path: root/libopenjpeg
diff options
context:
space:
mode:
authorMickael Savinaud <savmickael@users.noreply.github.com>2011-10-07 21:57:09 +0000
committerMickael Savinaud <savmickael@users.noreply.github.com>2011-10-07 21:57:09 +0000
commit4d4b29ea9483c810a69db644539eaa45103989ab (patch)
tree879d8969c6860a57cd124f9f56f471ddb4c2733e /libopenjpeg
parentefd780f82a4b7a78889bededad6e369281ea5025 (diff)
[trunk] WIP: correct mistake in text output inside set_decoded_area function (credit to Winfried)
Diffstat (limited to 'libopenjpeg')
-rw-r--r--libopenjpeg/j2k.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libopenjpeg/j2k.c b/libopenjpeg/j2k.c
index 6d5b24e8..bc611609 100644
--- a/libopenjpeg/j2k.c
+++ b/libopenjpeg/j2k.c
@@ -6088,7 +6088,7 @@ opj_bool j2k_set_decode_area( opj_j2k_v2_t *p_j2k,
if (p_end_y < l_cp->ty0) {
opj_event_msg_v2(p_manager, EVT_ERROR,
"Right position of the decoded area (ROI_y1=%d) is outside the tile area (YTOsiz=%d).\n",
- p_end_x, l_cp->ty0);
+ p_end_y, l_cp->ty0);
return OPJ_FALSE;
}
if (p_end_y > l_cp->ty0 + l_cp->th * l_cp->tdy){