improve constness of open_file_from_path

This commit is contained in:
Zachary T Welch
2009-11-13 14:21:56 -08:00
parent ccf59123b7
commit 0a9daddc2e
2 changed files with 2 additions and 2 deletions

View File

@@ -86,7 +86,7 @@ char *find_file(const char *file)
return NULL;
}
FILE *open_file_from_path (char *file, char *mode)
FILE *open_file_from_path(const char *file, const char *mode)
{
if (mode[0]!='r')
{