Commit 15e37f2a authored by Rafaël Carré's avatar Rafaël Carré

dvbpsi: handle all message types

parent 1f3c2d27
...@@ -73,9 +73,12 @@ static void dvbpsi_messages(dvbpsi_t *p_dvbpsi, const dvbpsi_msg_level_t level, ...@@ -73,9 +73,12 @@ static void dvbpsi_messages(dvbpsi_t *p_dvbpsi, const dvbpsi_msg_level_t level,
{ {
case DVBPSI_MSG_ERROR: msg_Err( obj, "%s", msg ); break; case DVBPSI_MSG_ERROR: msg_Err( obj, "%s", msg ); break;
case DVBPSI_MSG_WARN: msg_Warn( obj, "%s", msg ); break; case DVBPSI_MSG_WARN: msg_Warn( obj, "%s", msg ); break;
case DVBPSI_MSG_NONE:
case DVBPSI_MSG_DEBUG:
#ifdef DVBPSI_DEBUG #ifdef DVBPSI_DEBUG
case DVBPSI_MSG_DEBUG: msg_Dbg( obj, "%s", msg ); break; msg_Dbg( obj, "%s", msg );
#endif #endif
break;
} }
} }
#endif #endif
......
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