diff options
author | Kevin Wolf <kwolf@redhat.com> | 2013-06-05 14:19:26 +0200 |
---|---|---|
committer | Stefan Hajnoczi <stefanha@redhat.com> | 2013-06-06 11:27:03 +0200 |
commit | a23818f4ff3d7981f49453b739f589e4205930b5 (patch) | |
tree | 3453fa37fece548b66089f4ac2d96f8bf7752b85 /qemu-io.c | |
parent | 293c51a6ee369228633a8428ab689f14c045ff98 (diff) | |
download | qemu-a23818f4ff3d7981f49453b739f589e4205930b5.tar.gz qemu-a23818f4ff3d7981f49453b739f589e4205930b5.tar.bz2 qemu-a23818f4ff3d7981f49453b739f589e4205930b5.zip |
qemu-io: Remove unused args_command
The original intention seems to be something with handling multiple
images at once, but this has never been implemented and the only
function ever registered is implemented to make everything behave like a
"global" command. Just do that unconditionally now.
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
Diffstat (limited to 'qemu-io.c')
-rw-r--r-- | qemu-io.c | 10 |
1 files changed, 0 insertions, 10 deletions
@@ -1888,15 +1888,6 @@ static int open_f(int argc, char **argv) return openfile(argv[optind], flags, growable); } -static int init_args_command(int index) -{ - /* only one device allowed so far */ - if (index >= 1) { - return 0; - } - return ++index; -} - static int init_check_command(const cmdinfo_t *ct) { if (ct->flags & CMD_FLAG_GLOBAL) { @@ -2043,7 +2034,6 @@ int main(int argc, char **argv) add_command(&wait_break_cmd); add_command(&abort_cmd); - add_args_command(init_args_command); add_check_command(init_check_command); /* open the device */ |