1
0
mirror of https://github.com/haiwen/libsearpc.git synced 2025-09-17 23:37:46 +00:00

Fix a wrong function call.

register_marshals has a 'void' parameter list.  So we shouldn't call it with a
argument.  GCC doesn't complain this error with '-Wall'.
This commit is contained in:
gnehzuil
2012-06-16 20:53:48 +08:00
committed by plt
parent e8fbbe2859
commit 1338fdb1c4

View File

@@ -193,7 +193,7 @@ searpc_server_init ()
NULL, (GDestroyNotify)service_free);
/* register buildin marshal functions */
register_marshals(marshal_table);
register_marshals();
}
void