mirror of
https://gitlab.com/qemu-project/qemu
synced 2024-11-05 20:35:44 +00:00
monitor: use DIV_ROUND_UP
I used the clang-tidy qemu-round check to generate the fix: https://github.com/elmarco/clang-tools-extra Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com> Acked-by: Dr. David Alan Gilbert <dgilbert@redhat.com> Reviewed-by: Richard Henderson <rth@twiddle.net>
This commit is contained in:
parent
e5f9903748
commit
69db8dfc19
1 changed files with 2 additions and 2 deletions
|
@ -1349,7 +1349,7 @@ static void memory_dump(Monitor *mon, int count, int format, int wsize,
|
|||
|
||||
switch(format) {
|
||||
case 'o':
|
||||
max_digits = (wsize * 8 + 2) / 3;
|
||||
max_digits = DIV_ROUND_UP(wsize * 8, 3);
|
||||
break;
|
||||
default:
|
||||
case 'x':
|
||||
|
@ -1357,7 +1357,7 @@ static void memory_dump(Monitor *mon, int count, int format, int wsize,
|
|||
break;
|
||||
case 'u':
|
||||
case 'd':
|
||||
max_digits = (wsize * 8 * 10 + 32) / 33;
|
||||
max_digits = DIV_ROUND_UP(wsize * 8 * 10, 33);
|
||||
break;
|
||||
case 'c':
|
||||
wsize = 1;
|
||||
|
|
Loading…
Reference in a new issue