summaryrefslogtreecommitdiff
path: root/src/daemon
diff options
context:
space:
mode:
authorManikandan C <mchockalingam@de.adit-jv.com>2018-12-12 10:20:37 +0100
committerManikandan C <mchockalingam@de.adit-jv.com>2018-12-12 10:20:37 +0100
commitbb15f2588aed9ee45ff42621de336aa4b7d65e53 (patch)
tree785b17ca079bc233a8fbccca6588c6e993ac7551 /src/daemon
parentb2ce65d9947849160e04e751075c7fe4b5dcd158 (diff)
downloadDLT-daemon-bb15f2588aed9ee45ff42621de336aa4b7d65e53.tar.gz
Fixed compiler error with previous commit
Signed-off-by: Manikandan C <mchockalingam@de.adit-jv.com>
Diffstat (limited to 'src/daemon')
-rw-r--r--src/daemon/dlt_daemon_connection.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/daemon/dlt_daemon_connection.c b/src/daemon/dlt_daemon_connection.c
index 4287623..3595981 100644
--- a/src/daemon/dlt_daemon_connection.c
+++ b/src/daemon/dlt_daemon_connection.c
@@ -229,7 +229,7 @@ DLT_STATIC DltReceiver *dlt_connection_get_receiver(DltDaemonLocal *daemon_local
#ifdef DLT_USE_UNIX_SOCKET_IPC
dlt_receiver_init_unix_socket(ret, fd, &app_recv_buffer);
#else
- dlt_receiver_init(ret, fd, DLT_APP_RCV_BUF_MAX);
+ dlt_receiver_init(ret, fd, DLT_RECEIVE_BUFSIZE);
#endif
}
break;