Commit a88f4625 authored by Christian Suloway's avatar Christian Suloway Committed by Jean-Paul Saman

src/dvbpsi_private.h: fix typo in dvbpsi_warning macro

Signed-off-by: default avatarJean-Paul Saman <jpsaman@videolan.org>
parent a2a237a1
...@@ -45,7 +45,7 @@ void dvbpsi_message(dvbpsi_t *dvbpsi, const int level, const char *fmt, ...); ...@@ -45,7 +45,7 @@ void dvbpsi_message(dvbpsi_t *dvbpsi, const int level, const char *fmt, ...);
# define dvbpsi_error(hnd, src, str, x...) \ # define dvbpsi_error(hnd, src, str, x...) \
dvbpsi_message(hnd, DVBPSI_MSG_ERROR, "libdvbpsi error (%s): " str, src, ##x) dvbpsi_message(hnd, DVBPSI_MSG_ERROR, "libdvbpsi error (%s): " str, src, ##x)
# define dvbpsi_warning(hnd, src, str, x...) \ # define dvbpsi_warning(hnd, src, str, x...) \
dvbpsi_message(hnd, DVBPSI_MSG_WARNING, "libdvbpsi warning (%s): " str, src, ##x) dvbpsi_message(hnd, DVBPSI_MSG_WARN, "libdvbpsi warning (%s): " str, src, ##x)
# define dvbpsi_debug(hnd, src, str, x...) \ # define dvbpsi_debug(hnd, src, str, x...) \
dvbpsi_message(hnd, DVBPSI_MSG_DEBUG, "libdvbpsi debug (%s): " str, src, ##x) dvbpsi_message(hnd, DVBPSI_MSG_DEBUG, "libdvbpsi debug (%s): " str, src, ##x)
#else #else
......
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