aboutsummaryrefslogtreecommitdiff
path: root/src/lib/fs/path.c
diff options
context:
space:
mode:
authorteor <teor@torproject.org>2019-10-30 16:26:37 +1000
committerteor <teor@torproject.org>2019-10-31 10:53:26 +1000
commit4666ca73a1af2d60398f2a08d9110f42a6a37e1b (patch)
treeface165586f139cbe7256a9f8da1a2069db20362 /src/lib/fs/path.c
parenta6ad26fd5fdfcad209d8263b4ea2a83b4a44c296 (diff)
downloadtor-4666ca73a1af2d60398f2a08d9110f42a6a37e1b.tar.gz
tor-4666ca73a1af2d60398f2a08d9110f42a6a37e1b.zip
config: Give warn_about_relative_paths() const args
Also gives make_path_absolute() const args. Obviously correct fixes to already reviewed code.
Diffstat (limited to 'src/lib/fs/path.c')
-rw-r--r--src/lib/fs/path.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/fs/path.c b/src/lib/fs/path.c
index 1b4bc74e96..9f297d98e8 100644
--- a/src/lib/fs/path.c
+++ b/src/lib/fs/path.c
@@ -258,7 +258,7 @@ alloc_getcwd(void)
* Return a newly allocated string, which may be a duplicate of <b>fname</b>.
*/
char *
-make_path_absolute(char *fname)
+make_path_absolute(const char *fname)
{
#ifdef _WIN32
char *absfname_malloced = _fullpath(NULL, fname, 1);