From b1503cda1e78cad4dca522ddbb4c69f4c6869bcd Mon Sep 17 00:00:00 2001 From: malc Date: Mon, 22 Dec 2008 20:33:55 +0000 Subject: Use the ARRAY_SIZE() macro where appropriate. Change from v1: Avoid changing the existing coding style in certain files. Signed-off-by: Stuart Brady git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6120 c046a42c-6fe2-441c-8c8c-71466251a162 --- hw/fdc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'hw/fdc.c') diff --git a/hw/fdc.c b/hw/fdc.c index 26ff184..b1b4bc7 100644 --- a/hw/fdc.c +++ b/hw/fdc.c @@ -1851,7 +1851,7 @@ static fdctrl_t *fdctrl_init_common (qemu_irq irq, int dma_chann, int i, j; /* Fill 'command_to_handler' lookup table */ - for (i = sizeof(handlers)/sizeof(handlers[0]) - 1; i >= 0; i--) { + for (i = ARRAY_SIZE(handlers) - 1; i >= 0; i--) { for (j = 0; j < sizeof(command_to_handler); j++) { if ((j & handlers[i].mask) == handlers[i].value) command_to_handler[j] = i; -- cgit v1.1