mirror of https://github.com/xemu-project/xemu.git
monitor: Use 'device' in eject
Monitor's eject command uses 'filename' for the device name argument, but 'device' is a better name. Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
This commit is contained in:
parent
29ec3156ee
commit
78d714e08f
|
@ -864,7 +864,7 @@ static void do_eject(Monitor *mon, const QDict *qdict, QObject **ret_data)
|
||||||
{
|
{
|
||||||
BlockDriverState *bs;
|
BlockDriverState *bs;
|
||||||
int force = qdict_get_int(qdict, "force");
|
int force = qdict_get_int(qdict, "force");
|
||||||
const char *filename = qdict_get_str(qdict, "filename");
|
const char *filename = qdict_get_str(qdict, "device");
|
||||||
|
|
||||||
bs = bdrv_find(filename);
|
bs = bdrv_find(filename);
|
||||||
if (!bs) {
|
if (!bs) {
|
||||||
|
|
|
@ -130,7 +130,7 @@ ETEXI
|
||||||
|
|
||||||
{
|
{
|
||||||
.name = "eject",
|
.name = "eject",
|
||||||
.args_type = "force:-f,filename:B",
|
.args_type = "force:-f,device:B",
|
||||||
.params = "[-f] device",
|
.params = "[-f] device",
|
||||||
.help = "eject a removable medium (use -f to force it)",
|
.help = "eject a removable medium (use -f to force it)",
|
||||||
.user_print = monitor_user_noop,
|
.user_print = monitor_user_noop,
|
||||||
|
|
Loading…
Reference in New Issue