1
0
mirror of https://github.com/haiwen/libsearpc.git synced 2025-08-02 05:12:55 +00:00

Fixed compile warnings

This commit is contained in:
Shuai Lin 2018-06-21 10:49:32 +08:00
parent 0570df3f4a
commit 686c15f29e
2 changed files with 2 additions and 2 deletions

View File

@ -303,7 +303,7 @@ searpc_server_call_function (const char *svc_name,
}
char*
searpc_compute_signature(gchar *ret_type, int pnum, ...)
searpc_compute_signature(const gchar *ret_type, int pnum, ...)
{
va_list ap;
int i = 0;

View File

@ -96,6 +96,6 @@ gchar *searpc_server_call_function (const char *service,
*
* Compute function signature.
*/
char* searpc_compute_signature (gchar *ret_type, int pnum, ...);
char* searpc_compute_signature (const gchar *ret_type, int pnum, ...);
#endif