mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-01 23:03:54 -06:00
misc: Use macro ARRAY_SIZE where possible
This improves readability and simplifies the code. Cc: Anthony Liguori <aliguori@amazon.com> Cc: Gerd Hoffmann <kraxel@redhat.com> Cc: Stefan Hajnoczi <stefanha@redhat.com> Signed-off-by: Stefan Weil <sw@weilnetz.de> Reviewed-by: Peter Maydell <peter.maydell@linaro.org> Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
This commit is contained in:
parent
2e0fc3a488
commit
dff7424dc0
3 changed files with 4 additions and 5 deletions
|
@ -856,7 +856,7 @@ static int net_host_check_device(const char *device)
|
|||
,"vde"
|
||||
#endif
|
||||
};
|
||||
for (i = 0; i < sizeof(valid_param_list) / sizeof(char *); i++) {
|
||||
for (i = 0; i < ARRAY_SIZE(valid_param_list); i++) {
|
||||
if (!strncmp(valid_param_list[i], device,
|
||||
strlen(valid_param_list[i])))
|
||||
return 1;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue