Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
muxer: fix the meta write errors, fixes #2557
  • Loading branch information
perexg committed Dec 16, 2014
1 parent cfa7cd0 commit 34be158
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/muxer.h
Expand Up @@ -129,7 +129,7 @@ static inline int muxer_destroy (muxer_t *m)
{ if (m) { m->m_destroy(m); return 0; } return -1; }

static inline int muxer_write_meta (muxer_t *m, struct epg_broadcast *eb, const char *comment)
{ if (m && eb) return m->m_write_meta(m, eb, comment); return -1; }
{ if (m) return m->m_write_meta(m, eb, comment); return -1; }

static inline int muxer_write_pkt (muxer_t *m, streaming_message_type_t smt, void *data)
{ if (m && data) return m->m_write_pkt(m, smt, data); return -1; }
Expand Down

0 comments on commit 34be158

Please sign in to comment.