Use jack_free() instead of free()

git-svn-id: file:///home/vcs/svn/jsweeper/trunk@39 6611ac79-6612-48ef-a1e9-b906f853523e
master
petern 2010-01-29 19:38:40 +00:00
parent 4325fae65f
commit 04d0397d75
1 changed files with 1 additions and 1 deletions

View File

@ -46,7 +46,7 @@ void PortManager::Refresh()
Add(jack_port_by_name(client, ports[i]));
}
free(ports);
jack_free(ports);
RefreshConnections();
}