From 3ff48f27cff4f077c5153b9e1902cf48b316c4ca Mon Sep 17 00:00:00 2001 From: Mathieu Malaterre Date: Tue, 22 May 2012 16:07:38 +0000 Subject: [PATCH] [trunk] error message typo, refer PLT instead of PLM --- libopenjpeg/j2k.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libopenjpeg/j2k.c b/libopenjpeg/j2k.c index 7d4d51d6..0bdf793b 100644 --- a/libopenjpeg/j2k.c +++ b/libopenjpeg/j2k.c @@ -4582,7 +4582,7 @@ opj_bool j2k_read_plt_v2 ( assert(p_manager != 00); if (p_header_size < 1) { - opj_event_msg_v2(p_manager, EVT_ERROR, "Error reading PLM marker\n"); + opj_event_msg_v2(p_manager, EVT_ERROR, "Error reading PLT marker\n"); return OPJ_FALSE; } @@ -4605,7 +4605,7 @@ opj_bool j2k_read_plt_v2 ( } if (l_packet_len != 0) { - opj_event_msg_v2(p_manager, EVT_ERROR, "Error reading PLM marker\n"); + opj_event_msg_v2(p_manager, EVT_ERROR, "Error reading PLT marker\n"); return OPJ_FALSE; }