Fix gcc warning on ecore_ipc_client_send.

SVN revision: 32128
This commit is contained in:
Christopher Michael 2007-10-21 10:59:35 +00:00
parent 65a8a77921
commit 800013748b
1 changed files with 2 additions and 1 deletions

View File

@ -124,7 +124,8 @@ e_init_status_set(const char *str)
return;
}
printf("---SEND\n");
ecore_ipc_client_send(client, E_IPC_DOMAIN_INIT, 1, 0, 0, 0, str, strlen(str) + 1);
ecore_ipc_client_send(client, E_IPC_DOMAIN_INIT, 1, 0, 0, 0, (void *)str,
strlen(str) + 1);
ecore_ipc_client_flush(client);
}