Char: vt, use ARRAY_SIZE
authorJiri Slaby <[email protected]>
Tue, 17 Jul 2007 11:05:21 +0000 (04:05 -0700)
committerLinus Torvalds <[email protected]>
Tue, 17 Jul 2007 17:23:10 +0000 (10:23 -0700)
vt, use ARRAY_SIZE

Signed-off-by: Jiri Slaby <[email protected]>
Acked-by: Alan Cox <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
drivers/char/vt.c

index 5db295d7a879d378803daae3e148dec5aa8a7396..349673d432f13240882782d4dd89e99df5cd6cd7 100644 (file)
@@ -1990,8 +1990,7 @@ static int is_double_width(uint32_t ucs)
                { 0xFE10, 0xFE19 }, { 0xFE30, 0xFE6F }, { 0xFF00, 0xFF60 },
                { 0xFFE0, 0xFFE6 }, { 0x20000, 0x2FFFD }, { 0x30000, 0x3FFFD }
        };
-       return bisearch(ucs, double_width,
-               sizeof(double_width) / sizeof(*double_width) - 1);
+       return bisearch(ucs, double_width, ARRAY_SIZE(double_width) - 1);
 }
 
 /* acquires console_sem */