Skip to content

Commit

Permalink
-Change: midi_munt/oss: improve debug log
Browse files Browse the repository at this point in the history
  • Loading branch information
miniupnp committed Nov 19, 2017
1 parent 35969b0 commit f38bf8e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/audio/midi_munt.c
Expand Up @@ -318,7 +318,7 @@ static void munt_tick(void)
if(n < 0) {
Warning("munt_tick() write() : %s\n", strerror(errno));
} else if(n != (s_sample_rate * 4) / MUNT_RENDER_RATE) {
Warning("write() returned %lu\n", (unsigned long)n);
Warning("write(%lu) returned %lu\n", (unsigned long)((s_sample_rate * 4) / MUNT_RENDER_RATE), (unsigned long)n);
}
}
}
Expand Down

0 comments on commit f38bf8e

Please sign in to comment.