1
0
mirror of https://github.com/mpv-player/mpv synced 2025-03-03 20:57:45 +00:00

Parameter of Filter function can be const, removes the warning

mplayer/gtk/fs.c:197: warning: passing argument 1 of 'Filter' discards qualifiers from pointer target type


git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25263 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
reimar 2007-12-02 16:52:19 +00:00
parent 74be616f16
commit b022082564

View File

@ -134,7 +134,7 @@ GdkPixmap * fpixmap;
GdkBitmap * dmask;
GdkBitmap * fmask;
static char * Filter( char * name )
static char * Filter( const char * name )
{
static char tmp[32];
int i,c;