FIX smf-tool compilation (library ordering)

This commit is contained in:
Robin Gareus 2022-02-05 16:04:32 +01:00
parent 207ad2d369
commit 3da54244ea
No known key found for this signature in database
GPG key ID: A090BCE02CF57F04
2 changed files with 8 additions and 5 deletions

View file

@ -21,7 +21,7 @@ main (int argc, char** argv)
#if 0
Evoral::SMF smf;
smf.open (fn);
printf ("SMF '%s' tracks=%d, ppqn=%d\n", fn, smf.num_tracks (), smf.ppqn());
printf ("SMF '%s' tracks=%d, ppqn=%d (n_notes: %ld)\n", fn, smf.num_tracks (), smf.ppqn(), smf.n_note_on_events ());
#else
FILE* f = g_fopen(fn, "r");
if (!f) {