diff options
author | Bihong Yu | 2020-10-20 05:10:45 +0200 |
---|---|---|
committer | Dr. David Alan Gilbert | 2020-10-26 17:15:04 +0100 |
commit | f4c51a6bfdc0469f34cf53c803e15fc26f87238c (patch) | |
tree | 4e96020ef79194f54f450481b573f73fb43019db /migration/ram.c | |
parent | migration: Open brace '{' following struct go on the same line (diff) | |
download | qemu-f4c51a6bfdc0469f34cf53c803e15fc26f87238c.tar.gz qemu-f4c51a6bfdc0469f34cf53c803e15fc26f87238c.tar.xz qemu-f4c51a6bfdc0469f34cf53c803e15fc26f87238c.zip |
migration: Add braces {} for if statement
Signed-off-by: Bihong Yu <yubihong@huawei.com>
Reviewed-by: Chuan Zheng <zhengchuan@huawei.com>
Reviewed-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
Message-Id: <1603163448-27122-6-git-send-email-yubihong@huawei.com>
Reviewed-by: Juan Quintela <quintela@redhat.com>
Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
Diffstat (limited to 'migration/ram.c')
-rw-r--r-- | migration/ram.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/migration/ram.c b/migration/ram.c index 0aea78f8a1..09178cc3a3 100644 --- a/migration/ram.c +++ b/migration/ram.c @@ -101,14 +101,16 @@ static struct { static void XBZRLE_cache_lock(void) { - if (migrate_use_xbzrle()) + if (migrate_use_xbzrle()) { qemu_mutex_lock(&XBZRLE.lock); + } } static void XBZRLE_cache_unlock(void) { - if (migrate_use_xbzrle()) + if (migrate_use_xbzrle()) { qemu_mutex_unlock(&XBZRLE.lock); + } } /** |