diff options
author | Maxime Henrion <mux@FreeBSD.org> | 2006-03-03 18:45:12 +0000 |
---|---|---|
committer | Maxime Henrion <mux@FreeBSD.org> | 2006-03-03 18:45:12 +0000 |
commit | 91be0d8ce36a3d2846486eb436ad4332e805009e (patch) | |
tree | 562536dafdb622ad161913edd00e6ff8c8c1433b /contrib/csup/queue.h | |
parent | bb215397eea295477c3d8b6a058590abba067a9f (diff) | |
download | src-91be0d8ce36a3d2846486eb436ad4332e805009e.tar.gz src-91be0d8ce36a3d2846486eb436ad4332e805009e.zip |
Import today's csup sources to get the warning fix for queue.h. Wevendor/csup/20060303
probably want to do something similar in sys/queue.h; it's bad to have
STAILQ_LAST() generate GCC warnings.
Notes
Notes:
svn path=/vendor/csup/dist/; revision=156251
svn path=/vendor/csup/20060303/; revision=156253; tag=vendor/csup/20060303
Diffstat (limited to 'contrib/csup/queue.h')
-rw-r--r-- | contrib/csup/queue.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/csup/queue.h b/contrib/csup/queue.h index 369c013f7546..7ae77bcf0417 100644 --- a/contrib/csup/queue.h +++ b/contrib/csup/queue.h @@ -107,7 +107,7 @@ struct { \ #define STAILQ_LAST(head, type, field) \ (STAILQ_EMPTY((head)) ? \ NULL : \ - ((struct type *) \ + ((struct type *)(void *) \ ((char *)((head)->stqh_last) - __offsetof(struct type, field)))) #undef STAILQ_NEXT |