diff options
author | Sander Vrijders <sander.vrijders@intec.ugent.be> | 2016-12-02 11:35:02 +0100 |
---|---|---|
committer | Sander Vrijders <sander.vrijders@intec.ugent.be> | 2016-12-02 11:35:02 +0100 |
commit | a85162fb6b3ef22a44ecb5ae2ee950af303e61eb (patch) | |
tree | ec7073597d14dfccf00d2afa038094bc854cffcf | |
parent | c39db00ac0bbed2ec1affa632e83cb52699baec3 (diff) | |
download | ouroboros-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.
-rw-r--r-- | src/ipcpd/normal/pol/flat.c | 1 |
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) { |