]> Git Repo - qemu.git/blobdiff - monitor.c
linux-user/main.c: Mark end_exclusive() as possibly unused
[qemu.git] / monitor.c
index 1808e419323d7ceb83884eb10154994e009cc50a..7e4f605e6d229ae3d91b559e108591880e0c355c 100644 (file)
--- a/monitor.c
+++ b/monitor.c
@@ -1292,16 +1292,16 @@ static void memory_dump(Monitor *mon, int count, int format, int wsize,
             switch(wsize) {
             default:
             case 1:
-                v = ldub_raw(buf + i);
+                v = ldub_p(buf + i);
                 break;
             case 2:
-                v = lduw_raw(buf + i);
+                v = lduw_p(buf + i);
                 break;
             case 4:
-                v = (uint32_t)ldl_raw(buf + i);
+                v = (uint32_t)ldl_p(buf + i);
                 break;
             case 8:
-                v = ldq_raw(buf + i);
+                v = ldq_p(buf + i);
                 break;
             }
             monitor_printf(mon, " ");
This page took 0.023409 seconds and 4 git commands to generate.