diff options
author | Marin Ramesa <mpr@hi.t-com.hr> | 2013-12-16 23:55:17 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2013-12-17 19:03:52 +0100 |
commit | 5a5ec187ae6cb2afc874ad9ef118ef634e9164c8 (patch) | |
tree | 2b4a7146254a713bce9eb2c8cf95635a6969a435 /vm/vm_debug.c | |
parent | cea1f71ee21451d89cddeff04d8145697a5deab8 (diff) | |
download | gnumach-5a5ec187ae6cb2afc874ad9ef118ef634e9164c8.tar.gz gnumach-5a5ec187ae6cb2afc874ad9ef118ef634e9164c8.tar.bz2 gnumach-5a5ec187ae6cb2afc874ad9ef118ef634e9164c8.zip |
vm: qualify pointers whose dereferenced values are constant with const
Diffstat (limited to 'vm/vm_debug.c')
-rw-r--r-- | vm/vm_debug.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vm/vm_debug.c b/vm/vm_debug.c index a240ba85..e4a4b8b9 100644 --- a/vm/vm_debug.c +++ b/vm/vm_debug.c @@ -434,7 +434,7 @@ mach_vm_object_pages(object, pagesp, countp) kern_return_t host_virtual_physical_table_info(host, infop, countp) - host_t host; + const host_t host; hash_info_bucket_array_t *infop; natural_t *countp; { |