Skip to content

Commit 10cdc14

Browse files
committed
feat: Fixed uidx parameter bug.
Passing uidx parameter for feat_get to call to nvme_get_features.
1 parent 2e88998 commit 10cdc14

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plugins/feat/feat-nvme.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ static int feat_get(struct nvme_transport_handle *hdl, const __u8 fid,
6969
return -ENOMEM;
7070
}
7171

72-
err = nvme_get_features(hdl, 0, fid, sel, cdw11, 0, buf, len, &result);
72+
err = nvme_get_features(hdl, 0, fid, sel, cdw11, uidx, buf, len, &result);
7373

7474
nvme_show_init();
7575

0 commit comments

Comments
 (0)