d_iwad: Make DirIsFile filename parameter const

This commit is contained in:
Turo Lamminen 2018-03-31 17:45:07 +03:00
parent b1af844e71
commit bafe7eb1b9

View file

@ -448,7 +448,7 @@ static void CheckDOSDefaults(void)
// Returns true if the specified path is a path to a file
// of the specified name.
static boolean DirIsFile(const char *path, char *filename)
static boolean DirIsFile(const char *path, const char *filename)
{
size_t path_len;
size_t filename_len;