diff options
author | Sander Vrijders <sander.vrijders@ugent.be> | 2017-03-25 13:16:11 +0100 |
---|---|---|
committer | Sander Vrijders <sander.vrijders@ugent.be> | 2017-03-25 13:16:11 +0100 |
commit | 6ccf4835a980122c5f411331600b57093035d18e (patch) | |
tree | dbc8d3b1104f07d62aabd2b40ff628e2ea70e9b4 /src | |
parent | 0a75074b15f66a60496d196c0759d33afa3c8b18 (diff) | |
download | ouroboros-6ccf4835a980122c5f411331600b57093035d18e.tar.gz ouroboros-6ccf4835a980122c5f411331600b57093035d18e.zip |
ipcpd: normal: Fix compilation issue
Diffstat (limited to 'src')
-rw-r--r-- | src/ipcpd/normal/fmgr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ipcpd/normal/fmgr.c b/src/ipcpd/normal/fmgr.c index d2966d0c..a8a9ba58 100644 --- a/src/ipcpd/normal/fmgr.c +++ b/src/ipcpd/normal/fmgr.c @@ -494,7 +494,7 @@ int fmgr_np1_alloc(int fd, return -1; } - free(buf->data); + free(buf.data); fmgr.np1_fd_to_cep_id[fd] = cep_id; fmgr.np1_cep_id_to_fd[cep_id] = fd; |