diff options
Diffstat (limited to 'vm')
-rw-r--r-- | vm/vm_map.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/vm/vm_map.c b/vm/vm_map.c index 8ab6b1da..9bd67474 100644 --- a/vm/vm_map.c +++ b/vm/vm_map.c @@ -733,6 +733,8 @@ restart: max_size = size + mask; if (max_size < size) { + printf("max_size %x got smaller than size %x with mask %lx\n", + max_size, size, mask); goto error; } |