Commit 61e145ca authored by Erwan Tulou's avatar Erwan Tulou

skins2: fix a small memory leak and downgrade from err to dbg

This last occurrence of MSG_ERR led to a memory leak.
In addition, avoid spamming the logs. A debug message is enough.
parent 7c693f06
...@@ -63,7 +63,7 @@ X11Display::X11Display( intf_thread_t *pIntf ): SkinObject( pIntf ), ...@@ -63,7 +63,7 @@ X11Display::X11Display( intf_thread_t *pIntf ): SkinObject( pIntf ),
m_pDisplay = XOpenDisplay( NULL ); m_pDisplay = XOpenDisplay( NULL );
if( m_pDisplay == NULL ) if( m_pDisplay == NULL )
{ {
MSG_ERR( "Cannot open display" ); msg_Dbg( pIntf, "Cannot open X display" );
return; return;
} }
......
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