diff options
author | jhibbits <jhibbits@FreeBSD.org> | 2016-01-27 03:51:24 +0000 |
---|---|---|
committer | jhibbits <jhibbits@FreeBSD.org> | 2016-01-27 03:51:24 +0000 |
commit | c8795644be6731c963c64cd23eecf95e46be5dce (patch) | |
tree | 7db3b8042802622c4ab9cd6953947815490f434e | |
parent | 0ccc3c81eb84e02cc75d71eed8f734f3f9da961e (diff) | |
download | FreeBSD-src-c8795644be6731c963c64cd23eecf95e46be5dce.zip FreeBSD-src-c8795644be6731c963c64cd23eecf95e46be5dce.tar.gz |
Fix the build post-r294883.
Pointy-hat to: jhibbits
X-MFC with: r294883
-rw-r--r-- | sys/sys/rman.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/sys/rman.h b/sys/sys/rman.h index 0ccafff..9ea7bba 100644 --- a/sys/sys/rman.h +++ b/sys/sys/rman.h @@ -82,7 +82,7 @@ struct u_rman { char rm_descr[RM_TEXTLEN]; /* rman description */ rman_res_t rm_start; /* base of managed region */ - bus_size_t rm_size; /* size of managed region */ + rman_res_t rm_size; /* size of managed region */ enum rman_type rm_type; /* region type */ }; |