fix compilation warning

This commit is contained in:
Nedko Arnaudov 2010-05-10 19:51:20 +03:00
parent 23d42ae884
commit 9638c3fb0e
2 changed files with 2 additions and 2 deletions

View File

@ -50,7 +50,7 @@ void jmcore_proxy_uninit(void)
dbus_unregister_service_lifetime_hook(g_dbus_connection, JMCORE_SERVICE_NAME);
}
const int64_t jmcore_proxy_get_pid_cached(void)
int64_t jmcore_proxy_get_pid_cached(void)
{
if (g_jmcore_pid == 0)
{

View File

@ -31,7 +31,7 @@
bool jmcore_proxy_init(void);
void jmcore_proxy_uninit(void);
const int64_t jmcore_proxy_get_pid_cached(void);
int64_t jmcore_proxy_get_pid_cached(void);
bool jmcore_proxy_get_pid_noncached(int64_t * pid_ptr);
bool jmcore_proxy_create_link(bool midi, const char * input_port_name, const char * output_port_name);
bool jmcore_proxy_destroy_link(const char * port_name);