diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2020-11-08 02:25:25 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2020-11-08 02:25:25 +0100 |
commit | d0aee051a980557ded97d00e74446bddecf161cc (patch) | |
tree | 420e4a0cc4f70e2b00eb87958898b99b4feefd48 /i386 | |
parent | ea6526c444028ad8293593476f31f88c7e693745 (diff) | |
download | gnumach-d0aee051a980557ded97d00e74446bddecf161cc.tar.gz gnumach-d0aee051a980557ded97d00e74446bddecf161cc.tar.bz2 gnumach-d0aee051a980557ded97d00e74446bddecf161cc.zip |
pmap: Fix warning
* i386/intel/pmap.c (pmap_enter): Fix debugging print format.
Diffstat (limited to 'i386')
-rw-r--r-- | i386/intel/pmap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/i386/intel/pmap.c b/i386/intel/pmap.c index 34b1153c..1d214401 100644 --- a/i386/intel/pmap.c +++ b/i386/intel/pmap.c @@ -1973,7 +1973,7 @@ void pmap_enter( phys_addr_t old_pa; assert(pa != vm_page_fictitious_addr); - if (pmap_debug) printf("pmap(%lx, %llx)\n", v, pa); + if (pmap_debug) printf("pmap(%lx, %llx)\n", v, (unsigned long long) pa); if (pmap == PMAP_NULL) return; |