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:
@@ -193,7 +193,7 @@ searpc_server_init ()
|
||||
NULL, (GDestroyNotify)service_free);
|
||||
|
||||
/* register buildin marshal functions */
|
||||
register_marshals(marshal_table);
|
||||
register_marshals();
|
||||
}
|
||||
|
||||
void
|
||||
|
Reference in New Issue
Block a user