summaryrefslogtreecommitdiff
path: root/src/ipcpd/normal/pol/flat.c
diff options
context:
space:
mode:
authorSander Vrijders <sander.vrijders@intec.ugent.be>2016-12-02 11:35:02 +0100
committerSander Vrijders <sander.vrijders@intec.ugent.be>2016-12-02 11:35:02 +0100
commita85162fb6b3ef22a44ecb5ae2ee950af303e61eb (patch)
treeec7073597d14dfccf00d2afa038094bc854cffcf /src/ipcpd/normal/pol/flat.c
parentc39db00ac0bbed2ec1affa632e83cb52699baec3 (diff)
downloadouroboros-a85162fb6b3ef22a44ecb5ae2ee950af303e61eb.tar.gz
ouroboros-a85162fb6b3ef22a44ecb5ae2ee950af303e61eb.zip
ipcpd: normal: Fix release build
The release build failed since an assert was optimized out, which resulted in a unused variable error.
Diffstat (limited to 'src/ipcpd/normal/pol/flat.c')
-rw-r--r--src/ipcpd/normal/pol/flat.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/ipcpd/normal/pol/flat.c b/src/ipcpd/normal/pol/flat.c
index a428da20..06958222 100644
--- a/src/ipcpd/normal/pol/flat.c
+++ b/src/ipcpd/normal/pol/flat.c
@@ -103,6 +103,7 @@ static void ro_updated(const char * name,
assert(name);
assert(data);
assert(len >= sizeof(*msg));
+ (void) len;
ro_name = addr_name();
if (ro_name == NULL) {