diff options
author | dimitri staessens <dimitri.staessens@intec.ugent.be> | 2016-10-21 15:28:24 +0200 |
---|---|---|
committer | dimitri staessens <dimitri.staessens@intec.ugent.be> | 2016-10-21 15:28:24 +0200 |
commit | d5a52f3951fff7ee272bd0d4cd95cd122d07fa64 (patch) | |
tree | d32f6d89550a7b8606c78c241b73b23a39ae8bed /src/irmd/main.c | |
parent | 482c44232d4deda3f89a7d85fbad99c1c64e80ec (diff) | |
download | ouroboros-d5a52f3951fff7ee272bd0d4cd95cd122d07fa64.tar.gz ouroboros-d5a52f3951fff7ee272bd0d4cd95cd122d07fa64.zip |
build: Comply with -Wextra compiler flag
This reduces the risk for some bugs, for instance due to
signed/unsigned mismatches and unused variables.
Diffstat (limited to 'src/irmd/main.c')
-rw-r--r-- | src/irmd/main.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/irmd/main.c b/src/irmd/main.c index 8d9d04ac..12da81aa 100644 --- a/src/irmd/main.c +++ b/src/irmd/main.c @@ -729,7 +729,7 @@ static ssize_t list_ipcps(char * name, pid_t ** apis) static int name_reg(char * name, char ** difs, size_t len) { - int i; + size_t i; int ret = 0; struct list_head * p = NULL; @@ -829,7 +829,7 @@ static int name_reg(char * name, char ** difs, size_t len) static int name_unreg(char * name, char ** difs, size_t len) { - int i; + size_t i; int ret = 0; struct list_head * pos = NULL; @@ -1127,6 +1127,7 @@ static struct irm_flow * flow_alloc(pid_t api, int port_id; /* FIXME: Map qos_spec to qos_cube */ + (void) qos; pthread_rwlock_rdlock(&irmd->state_lock); @@ -1630,6 +1631,9 @@ static void irm_destroy() void irmd_sig_handler(int sig, siginfo_t * info, void * c) { + (void) info; + (void) c; + switch(sig) { case SIGINT: case SIGTERM: |