summaryrefslogtreecommitdiff
path: root/shared/long_path_prefix.h
diff options
context:
space:
mode:
authorDaniel Wilhelm <daniel@wili.li>2014-04-18 17:14:37 +0200
committerDaniel Wilhelm <daniel@wili.li>2014-04-18 17:14:37 +0200
commit8bf668665b107469086f16cb8ad23e47d479d2b4 (patch)
tree66a91ef06a8caa7cd6819dcbe1860693d3eda8d5 /shared/long_path_prefix.h
parent3.21 (diff)
downloadFreeFileSync-8bf668665b107469086f16cb8ad23e47d479d2b4.tar.gz
FreeFileSync-8bf668665b107469086f16cb8ad23e47d479d2b4.tar.bz2
FreeFileSync-8bf668665b107469086f16cb8ad23e47d479d2b4.zip
4.0
Diffstat (limited to 'shared/long_path_prefix.h')
-rw-r--r--shared/long_path_prefix.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/shared/long_path_prefix.h b/shared/long_path_prefix.h
index 45fde0fa..ca6961a9 100644
--- a/shared/long_path_prefix.h
+++ b/shared/long_path_prefix.h
@@ -83,7 +83,7 @@ inline
Zstring zen::applyLongPathPrefixCreateDir(const Zstring& path) //throw()
{
//special rule for ::CreateDirectoryEx(): MAX_PATH - 12(=^ 8.3 filename) is threshold
- return applyLongPathPrefixImpl<MAX_PATH - 12>(path);
+ return applyLongPathPrefixImpl < MAX_PATH - 12 > (path);
}
bgstack15