]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/input-smob.cc
Merge branch 'master' of /home/jcharles/GIT/Lily/. into translation
[lilypond.git] / lily / input-smob.cc
index 0a33bd6a596243159596b864c38378e4cbc709f2..605b790a686675875a13d2db0c72188e34fc3f2f 100644 (file)
@@ -47,8 +47,8 @@ Input::print_smob (SCM port, scm_print_state *)
 SCM
 Input::equal_p (SCM sa, SCM sb)
 {
-  Input *a = unsmob (sa);
-  Input *b = unsmob (sb);
+  Input *a = unsmob<Input> (sa);
+  Input *b = unsmob<Input> (sb);
   if (a->get_source_file () == b->get_source_file ()
       && a->start () == b->start ()
       && a->end () == b->end ())