Commit 62312d68 authored by Jean-Paul Saman's avatar Jean-Paul Saman

example/dvbinfo/libdvbpsi.c: fix typo in libdvbpsi_init()

parent edcb64bc
...@@ -1232,7 +1232,7 @@ ts_stream_t *libdvbpsi_init(int debug) ...@@ -1232,7 +1232,7 @@ ts_stream_t *libdvbpsi_init(int debug)
goto error; goto error;
/* CAT */ /* CAT */
stream->cat.handle = dvbpsi_NewHandle(&dvbpsi_message, stream->level); stream->cat.handle = dvbpsi_NewHandle(&dvbpsi_message, stream->level);
if (stream->pat.handle == NULL) if (stream->cat.handle == NULL)
goto error; goto error;
if (!dvbpsi_AttachCAT(stream->cat.handle, handle_CAT, stream)) if (!dvbpsi_AttachCAT(stream->cat.handle, handle_CAT, stream))
{ {
......
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