summaryrefslogtreecommitdiffstats
path: root/virt-top
diff options
context:
space:
mode:
authorRichard W.M. Jones <rjones@redhat.com>2011-08-12 11:54:41 +0100
committerRichard W.M. Jones <rjones@redhat.com>2011-08-12 11:55:48 +0100
commit20afbd9ba7055428a8ddfc13bba2e357836b461b (patch)
treea29fef2ef9122153ad92ba4e7c7bedd7b9adb503 /virt-top
parent067b868b9cce7620774d7fb57dac6fd8df45d8df (diff)
downloadvirt-top-20afbd9ba7055428a8ddfc13bba2e357836b461b.tar.gz
virt-top-20afbd9ba7055428a8ddfc13bba2e357836b461b.tar.xz
virt-top-20afbd9ba7055428a8ddfc13bba2e357836b461b.zip
Fix ordering of csv_mode and stream_mode in tuple.
Note that this bug could have been avoided by using a struct instead of a tuple here. This updates commit daf79631f3eff904ba89297148c4125ac7dfee39.
Diffstat (limited to 'virt-top')
-rw-r--r--virt-top/virt_top_main.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/virt-top/virt_top_main.ml b/virt-top/virt_top_main.ml
index 44dbf93..bd9b575 100644
--- a/virt-top/virt_top_main.ml
+++ b/virt-top/virt_top_main.ml
@@ -31,7 +31,7 @@ open Virt_top
* the program under --debug ...).
*)
let error =
- let ((_, _, script_mode, stream_mode, _, _, _, _) as setup) = start_up () in
+ let ((_, _, script_mode, _, stream_mode, _, _, _) as setup) = start_up () in
try
Printexc.record_backtrace true;