From 001690a453583285cbdfdf57764c818f736b03f6 Mon Sep 17 00:00:00 2001 From: Sasha Levin Date: Sat, 9 Jul 2011 09:57:30 +0300 Subject: [PATCH] kvm tools: Rename debug options under 'kvm run' Rename debug options to make them consistent with each other. Signed-off-by: Sasha Levin Signed-off-by: Pekka Enberg --- builtin-run.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/builtin-run.c b/builtin-run.c index 09bd1da..8b7d08b 100644 --- a/builtin-run.c +++ b/builtin-run.c @@ -178,9 +178,9 @@ static const struct option options[] = { "Enable debug messages"), OPT_BOOLEAN('\0', "debug-single-step", &single_step, "Enable single stepping"), - OPT_BOOLEAN('\0', "debug-ioport-debug", &ioport_debug, + OPT_BOOLEAN('\0', "debug-ioport", &ioport_debug, "Enable ioport debugging"), - OPT_INTEGER('\0', "debug_iodelay", &debug_iodelay, + OPT_INTEGER('\0', "debug-iodelay", &debug_iodelay, "Delay IO by millisecond"), OPT_END() };