Skip to content

Commit 7eec0a8

Browse files
erikdfalkTX
authored andcommitted
midiseq.c: Remove unused variable
1 parent 4aa8a5f commit 7eec0a8

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

example-clients/midiseq.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,6 @@ static int process(jack_nframes_t nframes, void *arg)
8282
int main(int narg, char **args)
8383
{
8484
int i;
85-
jack_nframes_t nframes;
8685
if ((narg<6) || ((narg-3)%3 != 0)) {
8786
usage();
8887
exit(1);
@@ -93,7 +92,7 @@ int main(int narg, char **args)
9392
}
9493
jack_set_process_callback (client, process, 0);
9594
output_port = jack_port_register (client, "out", JACK_DEFAULT_MIDI_TYPE, JackPortIsOutput, 0);
96-
nframes = jack_get_buffer_size(client);
95+
9796
loop_index = 0;
9897
num_notes = (narg - 3)/3;
9998
note_frqs = malloc(num_notes*sizeof(unsigned char));

0 commit comments

Comments
 (0)