Commit 4899809e authored by Christophe Massiot's avatar Christophe Massiot

* src/descriptors/dr_56.c: Fixed a (major) typo in dr_56.c (thanks Johann !)

parent b44e4bc9
......@@ -51,7 +51,7 @@ dvbpsi_teletext_dr_t * dvbpsi_DecodeTeletextDr(
dvbpsi_teletext_dr_t * p_decoded;
/* Check the tag */
if(p_descriptor->i_tag != 0x56 || p_descriptor->i_tag != 0x46)
if(p_descriptor->i_tag != 0x56 && p_descriptor->i_tag != 0x46)
{
DVBPSI_ERROR_ARG("dr_46/56 decoder", "bad tag (0x%x)", p_descriptor->i_tag);
return NULL;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment