summaryrefslogtreecommitdiff
path: root/FreeFileSync/Source/ffs_paths.h
diff options
context:
space:
mode:
Diffstat (limited to 'FreeFileSync/Source/ffs_paths.h')
-rw-r--r--FreeFileSync/Source/ffs_paths.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/FreeFileSync/Source/ffs_paths.h b/FreeFileSync/Source/ffs_paths.h
index a2310a14..c2d63252 100644
--- a/FreeFileSync/Source/ffs_paths.h
+++ b/FreeFileSync/Source/ffs_paths.h
@@ -15,8 +15,8 @@ namespace fff
//------------------------------------------------------------------------------
//global program directories
//------------------------------------------------------------------------------
-Zstring getResourceDirPf (); //resource directory WITH trailing path separator
-Zstring getConfigDirPathPf(); // config directory WITH trailing path separator
+Zstring getResourceDirPath();
+Zstring getConfigDirPath();
//------------------------------------------------------------------------------
bgstack15