From Sebastien Tandel:

copy paste hit again, here is a patch with the accurate declaration of
RVALS in proto.h
Thx gcc-4.1.2 for finding new ways of generating strict aliasing warnings :)

patch with accurate comment and declaration.


svn path=/trunk/; revision=21157
This commit is contained in:
Stephen Fisher 2007-03-23 18:48:57 +00:00
parent 64cc1b407c
commit 3288a39db2
1 changed files with 2 additions and 2 deletions

View File

@ -69,9 +69,9 @@ struct _value_string;
/** Make a const true_false_string[] look like a _true_false_string pointer, used to set header_field_info.strings */
#define TFS(x) (const struct true_false_string*)(x)
/** Make a const value_string[] look like a _value_string pointer, used to set
/** Make a const range_string[] look like a _range_string pointer, used to set
* header_field_info.strings */
#define RVALS(x) (const struct _value_string*)(x)
#define RVALS(x) (const struct _range_string*)(x)
struct _protocol;