diff options
| author | Philippe Mathieu-Daudé <philmd@redhat.com> | 2020-03-05 18:56:47 +0100 |
|---|---|---|
| committer | Jason Wang <jasowang@redhat.com> | 2020-03-31 21:14:35 +0800 |
| commit | 2fa3d2d401b95036294361da52e4f3cd0f98155e (patch) | |
| tree | 44e6661b5e2149d96e9e2bde3f8f9e14ebf37632 /hw/net/xilinx_ethlite.c | |
| parent | 0002c3a696b2def7eda13d5fb722e45679959d22 (diff) | |
| download | focaccia-qemu-2fa3d2d401b95036294361da52e4f3cd0f98155e.tar.gz focaccia-qemu-2fa3d2d401b95036294361da52e4f3cd0f98155e.zip | |
hw/net/rtl8139: Simplify if/else statement
Rewrite:
if (E) {
return A;
} else {
return B;
}
/* EOF */
}
as:
if (E) {
return A;
}
return B;
}
Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Reviewed-by: Alistair Francis <alistair.francis@wdc.com>
Reviewed-by: Cédric Le Goater <clg@kaod.org>
Signed-off-by: Jason Wang <jasowang@redhat.com>
Diffstat (limited to 'hw/net/xilinx_ethlite.c')
0 files changed, 0 insertions, 0 deletions