diff options
author | Daniel Wilhelm <daniel@wili.li> | 2014-04-18 17:08:42 +0200 |
---|---|---|
committer | Daniel Wilhelm <daniel@wili.li> | 2014-04-18 17:08:42 +0200 |
commit | c32707148292d104c66276b43796d6057c8c7a5d (patch) | |
tree | bb83513f4aff24153e21a4ec92e34e4c27651b1f /file_hierarchy.cpp | |
parent | 3.9 (diff) | |
download | FreeFileSync-c32707148292d104c66276b43796d6057c8c7a5d.tar.gz FreeFileSync-c32707148292d104c66276b43796d6057c8c7a5d.tar.bz2 FreeFileSync-c32707148292d104c66276b43796d6057c8c7a5d.zip |
3.10
Diffstat (limited to 'file_hierarchy.cpp')
-rw-r--r-- | file_hierarchy.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/file_hierarchy.cpp b/file_hierarchy.cpp index e8cb78f0..84ed0162 100644 --- a/file_hierarchy.cpp +++ b/file_hierarchy.cpp @@ -193,13 +193,13 @@ const Zstring& ffs3::getSyncDBFilename() //make sure they end with ".ffs_db". These files will not be included into comparison when located in base sync directories #ifdef FFS_WIN static Zstring output = Zstring(util::is64BitBuild ? - DefaultStr("sync.x64.") : - DefaultStr("sync.")) + SYNC_DB_FILE_ENDING; + Zstr("sync.x64.") : + Zstr("sync.")) + SYNC_DB_FILE_ENDING; #elif defined FFS_LINUX //files beginning with dots are hidden e.g. in Nautilus static Zstring output = Zstring(util::is64BitBuild ? - DefaultStr(".sync.x64.") : - DefaultStr(".sync.")) + SYNC_DB_FILE_ENDING; + Zstr(".sync.x64.") : + Zstr(".sync.")) + SYNC_DB_FILE_ENDING; #endif return output; } |