File tree 3 files changed +6
-3
lines changed
3 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -5,8 +5,9 @@ struct test_filter {
5
5
gs_effect_t * whatever ;
6
6
};
7
7
8
- static const char * filter_getname (void )
8
+ static const char * filter_getname (void * unused )
9
9
{
10
+ UNUSED_PARAMETER (unused );
10
11
return "Test" ;
11
12
}
12
13
Original file line number Diff line number Diff line change @@ -10,8 +10,9 @@ struct random_tex {
10
10
bool initialized ;
11
11
};
12
12
13
- static const char * random_getname (void )
13
+ static const char * random_getname (void * unused )
14
14
{
15
+ UNUSED_PARAMETER (unused );
15
16
return "20x20 Random Pixel Texture Source (Test)" ;
16
17
}
17
18
Original file line number Diff line number Diff line change @@ -58,8 +58,9 @@ static void *sinewave_thread(void *pdata)
58
58
59
59
/* ------------------------------------------------------------------------- */
60
60
61
- static const char * sinewave_getname (void )
61
+ static const char * sinewave_getname (void * unused )
62
62
{
63
+ UNUSED_PARAMETER (unused );
63
64
return "Sinewave Sound Source (Test)" ;
64
65
}
65
66
You can’t perform that action at this time.
0 commit comments