summaryrefslogtreecommitdiffstats
path: root/include/expression.h
diff options
context:
space:
mode:
authorTomasz Bursztyka <tomasz.bursztyka@linux.intel.com>2012-08-02 00:31:35 +0000
committerPablo Neira Ayuso <pablo@netfilter.org>2012-08-03 11:38:56 +0200
commite5990b016a7c7d17e0dac1cadb6e8bc2c91610b0 (patch)
tree588ba199e7e3682cba188cf7bea5c1757215d2cb /include/expression.h
parent1f9ce119666902e92619ee648395fed3147d18a3 (diff)
expression: Differentiate expr among anonymous structures in struct expr
This fixes compilation with gcc-4.7 Signed-off-by: Tomasz Bursztyka <tomasz.bursztyka@linux.intel.com> Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'include/expression.h')
-rw-r--r--include/expression.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/expression.h b/include/expression.h
index 88042846..7074bbe7 100644
--- a/include/expression.h
+++ b/include/expression.h
@@ -195,7 +195,7 @@ struct expr {
};
struct {
/* EXPR_PREFIX */
- struct expr *expr;
+ struct expr *prefix;
unsigned int prefix_len;
};
struct {
@@ -219,7 +219,7 @@ struct expr {
};
struct {
/* EXPR_MAP */
- struct expr *expr;
+ struct expr *map;
struct expr *mappings;
};