Browse Source

Adrian Knoth fix in midiseq.c.

git-svn-id: http://subversion.jackaudio.org/jack/jack2/trunk/jackmp@4659 0c269be4-1314-0410-8aa9-9f06e86f4224
tags/1.9.9.5
sletz 13 years ago
parent
commit
2bac065714
2 changed files with 5 additions and 1 deletions
  1. +4
    -0
      ChangeLog
  2. +1
    -1
      example-clients/midiseq.c

+ 4
- 0
ChangeLog View File

@@ -36,6 +36,10 @@ John Emmas
Jackdmp changes log
---------------------------

2012-01-01 Stephane Letz <letz@grame.fr>

* Fix in midiseq.c.

2011-12-20 Stephane Letz <letz@grame.fr>

* Version 1.9.9 started.


+ 1
- 1
example-clients/midiseq.c View File

@@ -102,7 +102,7 @@ int main(int narg, char **args)
loop_index = 0;
num_notes = (narg - 3)/3;
note_frqs = malloc(num_notes*sizeof(unsigned char));
note_starts = malloc(num_notes*sizeof(unsigned char));
note_starts = malloc(num_notes*sizeof(jack_nframes_t));
note_lengths = malloc(num_notes*sizeof(jack_nframes_t));
loop_nsamp = atoi(args[2]);
for(i=0; i<num_notes; i++)


Loading…
Cancel
Save