Browse Source

evmon.c: Fix port rename callback function

Fix the function signature of the callback function so that it
matches what `jack_set_port_rename_callback` expects.
pull/7/head
Erik de Castro Lopo 10 years ago
parent
commit
c763e9d6d8
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      evmon.c

+ 1
- 1
evmon.c View File

@@ -27,7 +27,7 @@
#include <jack/uuid.h>

void
port_rename_callback (jack_port_id_t port, const char* old_name, const char* new_name)
port_rename_callback (jack_port_id_t port, const char* old_name, const char* new_name, void * ptr)
{
printf ("Port %d renamed from %s to %s\n", port, old_name, new_name);
}


Loading…
Cancel
Save