summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2015-06-10 09:28:31 +0100
committerCarl Hetherington <cth@carlh.net>2015-06-10 09:28:31 +0100
commitd228090b2f095d9233c1762a5e75968ca5377bf5 (patch)
tree5e72d7996dba7d4803f0146a77698a4dec438e24 /src
parentb05d26225014ecc0f2eebe8671a3e41d62b30b69 (diff)
Don't complain if SMPTE subtitle <LoadFont> URNs are different.
Diffstat (limited to 'src')
-rw-r--r--src/smpte_subtitle_asset.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/smpte_subtitle_asset.cc b/src/smpte_subtitle_asset.cc
index 36908951..dc0c86ad 100644
--- a/src/smpte_subtitle_asset.cc
+++ b/src/smpte_subtitle_asset.cc
@@ -284,7 +284,7 @@ SMPTESubtitleAsset::equals (shared_ptr<const Asset> other_asset, EqualityOptions
return false;
}
- if (**i != **j) {
+ if ((*i)->id != (*j)->id) {
note (DCP_ERROR, "<LoadFont> nodes differ");
return false;
}