diff options
| author | Sander Vrijders <sander.vrijders@ugent.be> | 2017-03-21 17:14:50 +0000 | 
|---|---|---|
| committer | dimitri staessens <dimitri.staessens@ugent.be> | 2017-03-21 17:14:50 +0000 | 
| commit | 411f2fba77388ba8b2258bcb5380152460f8e8e8 (patch) | |
| tree | 6977229f9148774a4338c489134207ab8b0f5c9f /src/irmd | |
| parent | 122202761b3fb09a883ca8081eb1eb4243cd484d (diff) | |
| parent | 1d0e634a651f234c3942c6b82164470fa2432058 (diff) | |
| download | ouroboros-411f2fba77388ba8b2258bcb5380152460f8e8e8.tar.gz ouroboros-411f2fba77388ba8b2258bcb5380152460f8e8e8.zip | |
Merged in sandervrijders/ouroboros/be-fixes (pull request #409)
ipcpd: normal: Several bugfixes
Diffstat (limited to 'src/irmd')
| -rw-r--r-- | src/irmd/irm_flow.c | 5 | 
1 files changed, 3 insertions, 2 deletions
| diff --git a/src/irmd/irm_flow.c b/src/irmd/irm_flow.c index 20d2511c..8ca25b5b 100644 --- a/src/irmd/irm_flow.c +++ b/src/irmd/irm_flow.c @@ -31,7 +31,9 @@  #include <stdbool.h>  #include <assert.h> -struct irm_flow * irm_flow_create(pid_t n_api, pid_t n_1_api, int port_id) +struct irm_flow * irm_flow_create(pid_t n_api, +                                  pid_t n_1_api, +                                  int   port_id)  {          struct irm_flow * f = malloc(sizeof(*f));          if (f == NULL) @@ -47,7 +49,6 @@ struct irm_flow * irm_flow_create(pid_t n_api, pid_t n_1_api, int port_id)                  return NULL;          } -          f->n_api   = n_api;          f->n_1_api = n_1_api;          f->port_id = port_id; | 
