From f69624b5efc3d68184bb63113330ba98534ab127 Mon Sep 17 00:00:00 2001 From: Mats Bengtsson Date: Tue, 8 Apr 2008 17:43:06 +0200 Subject: [PATCH] Corrected warning printout. Fixes issue #595. Thanks Valentin! --- lily/time-signature-engraver.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lily/time-signature-engraver.cc b/lily/time-signature-engraver.cc index 26ba68e13d..27e60c14d3 100644 --- a/lily/time-signature-engraver.cc +++ b/lily/time-signature-engraver.cc @@ -62,8 +62,8 @@ Time_signature_engraver::process_music () OTOH, Tristan Keuris writes 8/20 in his Intermezzi. */ warning (_f ("strange time signature found: %d/%d", - den, - int (scm_to_int (scm_car (fr))))); + int (scm_to_int (scm_car (fr))), + den)); } time_signature_ = make_item ("TimeSignature", SCM_EOL); -- 2.39.5