summaryrefslogtreecommitdiffstats
path: root/pci.c
diff options
context:
space:
mode:
Diffstat (limited to 'pci.c')
-rw-r--r--pci.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/pci.c b/pci.c
index 5fae55c..a3f09db 100644
--- a/pci.c
+++ b/pci.c
@@ -604,8 +604,8 @@ int pcilib_write_register_by_id(pcilib_t *ctx, pcilib_register_t reg, pcilib_reg
pcilib_error("Big-endian byte order support is not implemented");
return PCILIB_ERROR_NOTSUPPORTED;
} else {
- if (b->access == sizeof(res) * 8) {
- buf[i] = res;
+ if (b->access == sizeof(pcilib_register_value_t) * 8) {
+ buf[0] = value;
} else {
for (i = 0, res = value; (res > 0)&&(i <= n); ++i) {
buf[i] = res & BIT_MASK(b->access);