diff options
author | Zhang Chen <chen.zhang@intel.com> | 2019-04-26 17:07:28 +0800 |
---|---|---|
committer | Dr. David Alan Gilbert <dgilbert@redhat.com> | 2019-05-14 17:33:35 +0100 |
commit | c0913d1dfd0456a54f412a63c60659b72eb7093b (patch) | |
tree | 8525cb8f881f92a69aa0baea00ab0b43b9d44aff /migration/colo-failover.c | |
parent | aded9dfa74a83f8b235df1bd3a874e48e197c78e (diff) |
migration/colo.c: Remove redundant input parameter
The colo_do_failover no need the input parameter.
Signed-off-by: Zhang Chen <chen.zhang@intel.com>
Message-Id: <20190426090730.2691-2-chen.zhang@intel.com>
Reviewed-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
Diffstat (limited to 'migration/colo-failover.c')
-rw-r--r-- | migration/colo-failover.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/migration/colo-failover.c b/migration/colo-failover.c index 4854a96c92..e9ca0b4774 100644 --- a/migration/colo-failover.c +++ b/migration/colo-failover.c @@ -39,7 +39,7 @@ static void colo_failover_bh(void *opaque) return; } - colo_do_failover(NULL); + colo_do_failover(); } void failover_request_active(Error **errp) |