improve constness of open_file_from_path
This commit is contained in:
parent
ccf59123b7
commit
0a9daddc2e
|
@ -86,7 +86,7 @@ char *find_file(const char *file)
|
||||||
return NULL;
|
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')
|
if (mode[0]!='r')
|
||||||
{
|
{
|
||||||
|
|
|
@ -36,7 +36,7 @@ void add_script_search_dir(const char *dir);
|
||||||
int configuration_output_handler(struct command_context *cmd_ctx,
|
int configuration_output_handler(struct command_context *cmd_ctx,
|
||||||
const char *line);
|
const char *line);
|
||||||
|
|
||||||
FILE *open_file_from_path(char *file, char *mode);
|
FILE *open_file_from_path(const char *file, const char *mode);
|
||||||
|
|
||||||
char *find_file(const char *name);
|
char *find_file(const char *name);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue