diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2018-07-28 18:39:54 +0200 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2018-07-28 18:39:54 +0200 |
commit | 4962b90a59b550525856a8eaa31104493407dc84 (patch) | |
tree | 374b5d3438e20b43ae63e4d225c57ffeaccf2002 /i386 | |
parent | 62b63be0090ebcb6e733955ce8f9081b3e2669bf (diff) | |
download | gnumach-4962b90a59b550525856a8eaa31104493407dc84.tar.gz gnumach-4962b90a59b550525856a8eaa31104493407dc84.tar.bz2 gnumach-4962b90a59b550525856a8eaa31104493407dc84.zip |
Fix warning
* i386/intel/pmap.c (pmap_enter): Fix panic 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 69ab9cca..63a061e5 100644 --- a/i386/intel/pmap.c +++ b/i386/intel/pmap.c @@ -1925,7 +1925,7 @@ Retry: * Would have to enter the new page-table page in * EVERY pmap. */ - panic("pmap_expand kernel pmap to %#x", v); + panic("pmap_expand kernel pmap to %#lx", v); } /* |