Skip to content

Commit

Permalink
fix some typos - thanks to Jaromír Mikeš/debian
Browse files Browse the repository at this point in the history
  • Loading branch information
x42 committed Sep 16, 2015
1 parent 5202a2e commit 3e0f6a6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion b_synth/lv2.c
Original file line number Diff line number Diff line change
Expand Up @@ -1041,7 +1041,7 @@ run(LV2_Handle instance, uint32_t n_samples)
if (!warning_printed && capacity < 4096) {
warning_printed = true;
fprintf(stderr, "B3LV2: LV message buffer is only %d bytes. Expect problems.\n", capacity);
fprintf(stderr, "B3LV2: if your LV2 host allows to configure a buffersize use at least 4kBytes.\n");
fprintf(stderr, "B3LV2: if your LV2 host allows one to configure a buffersize use at least 4kBytes.\n");

}
lv2_atom_forge_set_buffer(&b3s->forge, (uint8_t*)b3s->midiout, capacity);
Expand Down
2 changes: 1 addition & 1 deletion src/midi.c
Original file line number Diff line number Diff line change
Expand Up @@ -1312,7 +1312,7 @@ static void dumpCCAssigment(FILE * fp, unsigned char *ctrl, midiccflags_t *flags

void listCCAssignments(void *mcfg, FILE * fp) {
struct b_midicfg * m = (struct b_midicfg *) mcfg;
fprintf(fp,"MIDI CC Assigments:\n");
fprintf(fp,"MIDI CC Assignments:\n");
fprintf(fp,"--- Upper Manual - Channel %2d ---\n", m->rcvChA);
dumpCCAssigment(fp, m->ctrlUseA, m->ctrlflg[m->rcvChA]);
fprintf(fp,"--- Lower Manual - Channel %2d ---\n", m->rcvChB);
Expand Down

0 comments on commit 3e0f6a6

Please sign in to comment.