]> git.sesse.net Git - vlc/commitdiff
Do not use error message as a format string.
authorRémi Denis-Courmont <rem@videolan.org>
Wed, 3 Jan 2007 14:31:35 +0000 (14:31 +0000)
committerRémi Denis-Courmont <rem@videolan.org>
Wed, 3 Jan 2007 14:31:35 +0000 (14:31 +0000)
(There was no bug here; this is just to please Quovodis :) )

modules/misc/gnutls.c

index 58a052af90fc560b00c21ad9f4057d250bca4ee8..9887844607f42075a4b3a6dcea14c93414a1e39c 100644 (file)
@@ -305,7 +305,7 @@ gnutls_HandshakeAndValidate( tls_session_t *session )
         {
             if( status & e->flag )
             {
-                msg_Err( session, e->msg );
+                msg_Err( session, "%s", e->msg );
                 status &= ~e->flag;
             }
         }