aboutsummaryrefslogtreecommitdiff
path: root/samples/server.c
diff options
context:
space:
mode:
Diffstat (limited to 'samples/server.c')
-rw-r--r--samples/server.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/samples/server.c b/samples/server.c
index fdce13a..015cd45 100644
--- a/samples/server.c
+++ b/samples/server.c
@@ -334,10 +334,8 @@ migration_read_data(vfu_ctx_t *vfu_ctx, void *buf, uint64_t size)
// TODO check the following is always allowed
memcpy(buf, server_data->bar1 + read_start, bytes_read);
- } else if (
- read_start < server_data->bar1_size // starts in bar1
- && read_end > server_data->bar1_size // ends in bar0
- ) {
+ } else if (read_start < server_data->bar1_size // starts in bar1
+ && read_end > server_data->bar1_size) { // ends in bar0
// case 2: part of the read in bar1 and part of the read in bar0
// TODO check the following is always allowed