Skip to content

Commit

Permalink
nvme-wrap: fix get_log_reachability_associations parameters order
Browse files Browse the repository at this point in the history
Since the len parameter should be moved before the log parameter.

Signed-off-by: Tokunori Ikegami <[email protected]>
  • Loading branch information
ikegami-t authored and igaw committed Feb 17, 2025
1 parent c785a0a commit a4c3dbc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nvme-wrap.c
Original file line number Diff line number Diff line change
Expand Up @@ -467,5 +467,5 @@ int nvme_cli_get_log_reachability_groups(struct nvme_dev *dev, bool rgo, bool ra
int nvme_cli_get_log_reachability_associations(struct nvme_dev *dev, bool rao, bool rae, __u32 len,
struct nvme_reachability_associations_log *log)
{
return do_admin_op(get_log_reachability_associations, dev, len, rao, rae, log);
return do_admin_op(get_log_reachability_associations, dev, rao, rae, len, log);
}

0 comments on commit a4c3dbc

Please sign in to comment.