K 10
svn:author
V 6
iulius
K 8
svn:date
V 27
2015-05-24T16:31:42.024031Z
K 7
svn:log
V 717
storage/buffindexed/buffindexed.c:  fix alignment warnings

Given that GROUPheader is already a pointer to a GROUPHEADER, just
use &GROUPheader[1].

Thanks to Russ Allbery for the patch.

These are all problems with assigning the mmap'd address to a variable
that points to the first element of the structure.  A better way of
representing this in C would have been to have a pointer to GROUPENTRY be
the last element of GROUPHEADER, although I'm not sure what other
assumptions that would break, somewhere else.

These alignment cast warnings are mostly because the way that mmap'd data
structures are handled are probably correct in terms of code generation
but aren't represented very well for the C type checker.

END
