diff options
| author | Carl Hetherington <cth@carlh.net> | 2015-05-13 22:51:02 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2015-05-13 22:51:02 +0100 |
| commit | b38624843fc3b2a6120ce38f5a075f914fdfaffe (patch) | |
| tree | ec1292fb2168672fdbf2a740474fa67e40773688 | |
| parent | 8e7f9e4df7d7d7378a31400a4698ddd2378c8fd2 (diff) | |
Small thinko fix.
| -rw-r--r-- | src/interop_subtitle_content.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/interop_subtitle_content.cc b/src/interop_subtitle_content.cc index 2ba698db..305c3666 100644 --- a/src/interop_subtitle_content.cc +++ b/src/interop_subtitle_content.cc @@ -194,7 +194,7 @@ InteropSubtitleContent::equals (shared_ptr<const Asset> other_asset, EqualityOpt list<shared_ptr<InteropLoadFontNode> >::const_iterator j = other->_load_font_nodes.begin (); while (i != _load_font_nodes.end ()) { - if (j == _load_font_nodes.end ()) { + if (j == other->_load_font_nodes.end ()) { note (DCP_ERROR, "<LoadFont> nodes differ"); return false; } |
