Spelling correction patch from Debian

Patch taken (and forward-ported to HEAD) from
<https://anonscm.debian.org/cgit/pkg-multimedia/ardour.git/plain/debian/patches/0100-fix-typos.patch>
This commit is contained in:
Adrian Knoth 2016-02-22 21:01:23 +01:00 committed by Paul Davis
parent 53f1981eff
commit 6fa88273aa
24 changed files with 35 additions and 35 deletions

View file

@ -10,7 +10,7 @@ jack_port_t *input_port;
jack_port_t *output_port;
jack_client_t *client;
int loopsize = 25000;
int xrun_occured = 0;
int xrun_occurred = 0;
int consecutive_xruns = 0;
float first_xrun = 0.0f;
float last_load = 0.0f;
@ -59,14 +59,14 @@ process (jack_nframes_t nframes, void *arg)
printf ("loopsize = %d\n", loopsize);
}
if (xrun_occured) {
if (xrun_occurred) {
if (consecutive_xruns == 0) {
first_xrun = last_load;
}
consecutive_xruns++;
}
xrun_occured = 0;
xrun_occurred = 0;
if (consecutive_xruns >= 10) {
fprintf (stderr, "Stopping with load = %f (first xrun at %f)\n", last_load, first_xrun);
@ -90,8 +90,8 @@ jack_shutdown (void *arg)
int
jack_xrun (void *arg)
{
fprintf (stderr, "xrun occured with loop size = %d\n", loopsize);
xrun_occured = 1;
fprintf (stderr, "xrun occurred with loop size = %d\n", loopsize);
xrun_occurred = 1;
return 0;
}