summaryrefslogtreecommitdiff
path: root/structures.cpp
diff options
context:
space:
mode:
authorDaniel Wilhelm <daniel@wili.li>2014-04-18 17:20:50 +0200
committerDaniel Wilhelm <daniel@wili.li>2014-04-18 17:20:50 +0200
commit7e706cf64654aea466c059c307e5723e2423ed5d (patch)
treee85f0d28d7c81b6d21419fc38e1a654cca2212b1 /structures.cpp
parent5.5 (diff)
downloadFreeFileSync-7e706cf64654aea466c059c307e5723e2423ed5d.tar.gz
FreeFileSync-7e706cf64654aea466c059c307e5723e2423ed5d.tar.bz2
FreeFileSync-7e706cf64654aea466c059c307e5723e2423ed5d.zip
5.6
Diffstat (limited to 'structures.cpp')
-rw-r--r--structures.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/structures.cpp b/structures.cpp
index 3147eb4c..7becbf55 100644
--- a/structures.cpp
+++ b/structures.cpp
@@ -150,9 +150,9 @@ std::wstring zen::getSymbol(CompareFilesResult cmpRes)
case FILE_DIFFERENT:
return L"!=";
case FILE_EQUAL:
+ case FILE_DIFFERENT_METADATA: //= sub-category of equal!
return L"'=="; //added quotation mark to avoid error in Excel cell when exporting to *.cvs
case FILE_CONFLICT:
- case FILE_DIFFERENT_METADATA:
return L"conflict";
}
assert(false);
bgstack15