mirror of
https://github.com/gryf/wmaker.git
synced 2026-02-19 07:55:48 +01:00
Changed formula for getting the number of elements in a static array
When using the formula [sizeof(array) / sizeof( x )] to get the number of element in a static array, it is better to use array[0] for 'x' instead of the base type of array: - in case the base type would change someday; - if the compiler were deciding to insert padding somewhere
This commit is contained in:
committed by
Carlos R. Mafra
parent
e17a197bc4
commit
7f6699ffca
@@ -428,7 +428,7 @@ static void addSizeToTypeface(Typeface * face, int size)
|
||||
if (size == 0) {
|
||||
int j;
|
||||
|
||||
for (j = 0; j < sizeof(scalableFontSizes) / sizeof(int); j++) {
|
||||
for (j = 0; j < sizeof(scalableFontSizes) / sizeof(scalableFontSizes[0]); j++) {
|
||||
size = scalableFontSizes[j];
|
||||
|
||||
if (!WMCountInArray(face->sizes, (void *)(uintptr_t) size)) {
|
||||
|
||||
Reference in New Issue
Block a user