summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2018-10-14 00:05:36 +0100
committerCarl Hetherington <cth@carlh.net>2018-10-14 00:05:36 +0100
commite8f5bd4725ab4e564be73bc2e63d2bd836033e92 (patch)
treec90b392d1412a67aa451d68978ef35d17524041b
parent8f52c06dc8c334ae64fca3ab0d909e5b55987e28 (diff)
Fix bad chars.
-rw-r--r--src/tools/dcpomatic.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/dcpomatic.cc b/src/tools/dcpomatic.cc
index 4354e079e..4d6a289b5 100644
--- a/src/tools/dcpomatic.cc
+++ b/src/tools/dcpomatic.cc
@@ -480,7 +480,7 @@ private:
new_film (d->path(), d->template_name());
} catch (boost::filesystem::filesystem_error& e) {
#ifdef DCPOMATIC_WINDOWS
- string bad_chars = "<>:\"/\\|?*";
+ string bad_chars = "<>:\"/|?*";
string const filename = d->path().string();
string found_bad_chars;
for (size_t i = 0; i < bad_chars.length(); ++i) {