Commit 7ca02b97 authored by Pierre d'Herbemont's avatar Pierre d'Herbemont

smb: Flag unused params.

parent 2db13f14
...@@ -109,6 +109,14 @@ static void Win32AddConnection( access_t *, char *, char *, char *, char * ); ...@@ -109,6 +109,14 @@ static void Win32AddConnection( access_t *, char *, char *, char *, char * );
static void smb_auth( const char *srv, const char *shr, char *wg, int wglen, static void smb_auth( const char *srv, const char *shr, char *wg, int wglen,
char *un, int unlen, char *pw, int pwlen ) char *un, int unlen, char *pw, int pwlen )
{ {
VLC_UNUSED(srv);
VLC_UNUSED(shr);
VLC_UNUSED(wg);
VLC_UNUSED(wglen);
VLC_UNUSED(un);
VLC_UNUSED(unlen);
VLC_UNUSED(pw);
VLC_UNUSED(pwlen);
//wglen = unlen = pwlen = 0; //wglen = unlen = pwlen = 0;
} }
#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