diff options
| author | Anthony Liguori | 2013-09-17 18:10:47 +0200 |
|---|---|---|
| committer | Anthony Liguori | 2013-09-17 18:10:47 +0200 |
| commit | 46663e5eff4be1d79971f46e51c9bb415ec8f5be (patch) | |
| tree | d7923d72b8b99ea9c88bb4ce3a6fa440a0f56122 | |
| parent | Merge remote-tracking branch 'kiszka/queues/slirp' into staging (diff) | |
| download | qemu-46663e5eff4be1d79971f46e51c9bb415ec8f5be.tar.gz qemu-46663e5eff4be1d79971f46e51c9bb415ec8f5be.tar.xz qemu-46663e5eff4be1d79971f46e51c9bb415ec8f5be.zip | |
hmp: block-stream: fix typo
Found this by enabling C++ errors. The bool and enum arguments
are mistakenly flipped.
Signed-off-by: Anthony Liguori <anthony@codemonkey.ws>
| -rw-r--r-- | hmp.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1163,7 +1163,7 @@ void hmp_block_stream(Monitor *mon, const QDict *qdict) qmp_block_stream(device, base != NULL, base, qdict_haskey(qdict, "speed"), speed, - BLOCKDEV_ON_ERROR_REPORT, true, &error); + true, BLOCKDEV_ON_ERROR_REPORT, &error); hmp_handle_error(mon, &error); } |
