test: Fix compiler warnings about incompatible pointer type

This commit is contained in:
Christoph Hohmann
2016-07-18 17:48:06 +02:00
parent 8fc93f6b15
commit 08dd7ecc37
3 changed files with 6 additions and 3 deletions

View File

@@ -10,8 +10,9 @@ struct random_tex {
bool initialized;
};
static const char *random_getname(void)
static const char *random_getname(void *unused)
{
UNUSED_PARAMETER(unused);
return "20x20 Random Pixel Texture Source (Test)";
}