summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorZachary T Welch <zw@superlucidity.net>2009-11-13 14:21:56 -0800
committerZachary T Welch <zw@superlucidity.net>2009-11-16 15:47:08 -0800
commit0a9daddc2e20d9ff5053a9faf3e1ec11fd600c73 (patch)
tree872864991864753eed8c103805bf1b4947ddfb18 /src
parentccf59123b72b01149063d5864ef61077786c033e (diff)
downloadopenocd+libswd-0a9daddc2e20d9ff5053a9faf3e1ec11fd600c73.tar.gz
openocd+libswd-0a9daddc2e20d9ff5053a9faf3e1ec11fd600c73.tar.bz2
openocd+libswd-0a9daddc2e20d9ff5053a9faf3e1ec11fd600c73.tar.xz
openocd+libswd-0a9daddc2e20d9ff5053a9faf3e1ec11fd600c73.zip
improve constness of open_file_from_path
Diffstat (limited to 'src')
-rw-r--r--src/helper/configuration.c2
-rw-r--r--src/helper/configuration.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/helper/configuration.c b/src/helper/configuration.c
index 1f7240d9..74bcc9b0 100644
--- a/src/helper/configuration.c
+++ b/src/helper/configuration.c
@@ -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')
{
diff --git a/src/helper/configuration.h b/src/helper/configuration.h
index 9b77a256..ce9159c3 100644
--- a/src/helper/configuration.h
+++ b/src/helper/configuration.h
@@ -36,7 +36,7 @@ void add_script_search_dir(const char *dir);
int configuration_output_handler(struct command_context *cmd_ctx,
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);