aboutsummaryrefslogtreecommitdiff
path: root/device
diff options
context:
space:
mode:
authorFlavio Cruz <flaviocruz@gmail.com>2022-12-18 12:21:27 -0500
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2022-12-18 18:39:02 +0100
commit3b097978c147d6e98f02e7b2d31e75a36e36338f (patch)
treebf8e7c770b5e8dfbf104dcf80e594ce573470754 /device
parent16e0cdef9ce952fa5f7980d19f113be027e88b27 (diff)
downloadgnumach-3b097978c147d6e98f02e7b2d31e75a36e36338f.tar.gz
gnumach-3b097978c147d6e98f02e7b2d31e75a36e36338f.tar.bz2
gnumach-3b097978c147d6e98f02e7b2d31e75a36e36338f.zip
Use long_natural_t for recnum_t
For 64 bits, device operations will provide an addressing space of 64 bits. Also define the translation functions if long_natural_t or long_integer_t are ever used in RPCs. Note that MIG does not implicitly inherit the translation functions from types hence the need to redefine them for recnum_t. Message-Id: <Y59MFzekEA0YUXIw@mars>
Diffstat (limited to 'device')
-rw-r--r--device/subrs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/device/subrs.c b/device/subrs.c
index be710132..7a56f4b7 100644
--- a/device/subrs.c
+++ b/device/subrs.c
@@ -42,7 +42,7 @@
*/
void harderr(const io_req_t ior, const char *cp)
{
- printf("%s%d%c: hard error sn%d ",
+ printf("%s%d%c: hard error sn%lu ",
cp,
minor(ior->io_unit) >> 3,
'a' + (minor(ior->io_unit) & 0x7),