diff options
author | Rob Austein <sra@hactrn.net> | 2016-10-24 15:15:51 -0400 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2016-10-24 15:15:51 -0400 |
commit | dcf3c671314b36285277073c0a3d3a09bf4d93e6 (patch) | |
tree | e41e68a44ce08dfd3bf976d66634daf9c8097e9b /rpc_api.c | |
parent | 87f0998afe6dc6946d01429fc74f8696f0da2f0a (diff) |
Make previous_uuid an input-only argument to hal_rpc_pkey_match().
In retrospect it's obvious that this never needed to be an
input/output argument, as its value will always be the same as the
last value in the returned array. Doh. So simplify the RPC and call
sequence slightly by removing the unnecessary output value.
Diffstat (limited to 'rpc_api.c')
-rw-r--r-- | rpc_api.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -348,7 +348,7 @@ hal_error_t hal_rpc_pkey_match(const hal_client_handle_t client, hal_uuid_t *result, unsigned *result_len, const unsigned result_max, - hal_uuid_t *previous_uuid) + const hal_uuid_t * const previous_uuid) { if ((attributes == NULL && attributes_len > 0) || previous_uuid == NULL || result == NULL || result_len == NULL || result_max == 0) |