diff options
Diffstat (limited to 'lily/abbrev.cc')
-rw-r--r-- | lily/abbrev.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lily/abbrev.cc b/lily/abbrev.cc index eb87945cd7..841f063ca6 100644 --- a/lily/abbrev.cc +++ b/lily/abbrev.cc @@ -129,7 +129,7 @@ void Abbreviation::do_substitute_dependent (Score_element*o, Score_element*n) { if (stem_l_ == o) - stem_l_ = n ? dynamic_cast<Stem*> (n) : 0; + stem_l_ = dynamic_cast<Stem*> (n); } |