aboutsummaryrefslogtreecommitdiff
path: root/device
diff options
context:
space:
mode:
authorLuca Dariz <luca@orpolo.org>2022-06-28 12:10:51 +0200
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2022-08-27 21:16:15 +0200
commit499f154bf12fe15c6aa1740100e4545a71490be1 (patch)
treed7a3df1d591249689eae742add539248cae9a6d5 /device
parenta3db37b8837c091f6018257f2de5bb740350f3f5 (diff)
downloadgnumach-499f154bf12fe15c6aa1740100e4545a71490be1.tar.gz
gnumach-499f154bf12fe15c6aa1740100e4545a71490be1.tar.bz2
gnumach-499f154bf12fe15c6aa1740100e4545a71490be1.zip
fix warnings for 32 bit builds
Signed-off-by: Luca Dariz <luca@orpolo.org> Message-Id: <20220628101054.446126-13-luca@orpolo.org>
Diffstat (limited to 'device')
-rw-r--r--device/cirbuf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/device/cirbuf.c b/device/cirbuf.c
index 391297ce..a3c9407a 100644
--- a/device/cirbuf.c
+++ b/device/cirbuf.c
@@ -51,10 +51,10 @@ void
cb_check(struct cirbuf *cb)
{
if (!(cb->c_cf >= cb->c_start && cb->c_cf < cb->c_end))
- panic("cf %x out of range [%x..%x)",
+ panic("cf %p out of range [%p..%p)",
cb->c_cf, cb->c_start, cb->c_end);
if (!(cb->c_cl >= cb->c_start && cb->c_cl < cb->c_end))
- panic("cl %x out of range [%x..%x)",
+ panic("cl %p out of range [%p..%p)",
cb->c_cl, cb->c_start, cb->c_end);
if (cb->c_cf <= cb->c_cl) {
if (!(cb->c_cc == cb->c_cl - cb->c_cf))