summaryrefslogtreecommitdiff
path: root/nest/rt-attr.c
diff options
context:
space:
mode:
authorOndrej Zajicek (work) <santiago@crfreenet.org>2016-05-12 21:47:29 +0200
committerOndrej Zajicek (work) <santiago@crfreenet.org>2016-05-12 21:47:29 +0200
commit659f80f262a83d600d5f095fb8a03e912d3fbe64 (patch)
tree08c8b520d1d84f3ff0f74b22133b9b83762248b2 /nest/rt-attr.c
parent776d6b2c05fe8b14e5ec357eca24fe59c549bfa4 (diff)
Make int-new compilable again
Diffstat (limited to 'nest/rt-attr.c')
-rw-r--r--nest/rt-attr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/nest/rt-attr.c b/nest/rt-attr.c
index edd9ebf5..5041ab9f 100644
--- a/nest/rt-attr.c
+++ b/nest/rt-attr.c
@@ -948,7 +948,7 @@ rta_hash(rta *a)
{
mem_hash_t h;
mem_hash_init(&h);
-#define MIX(f) mem_hash_mix(&h, &(rta->f), sizeof(rta->f));
+#define MIX(f) mem_hash_mix(&h, &(a->f), sizeof(a->f));
MIX(src);
MIX(hostentry);
MIX(iface);