summaryrefslogtreecommitdiff
path: root/src/daemon/dlt_daemon_connection.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/daemon/dlt_daemon_connection.c')
-rw-r--r--src/daemon/dlt_daemon_connection.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/daemon/dlt_daemon_connection.c b/src/daemon/dlt_daemon_connection.c
index 755e76a..51f975d 100644
--- a/src/daemon/dlt_daemon_connection.c
+++ b/src/daemon/dlt_daemon_connection.c
@@ -61,7 +61,7 @@
* @return The amount of bytes send on success, -1 otherwise.
* errno is appropriately set.
*/
-static int dlt_connection_send(DltConnection *conn,
+STATIC int dlt_connection_send(DltConnection *conn,
void *msg,
size_t msg_size)
{
@@ -158,7 +158,7 @@ DltConnection *dlt_connection_get_next(DltConnection *current, int type_mask)
return current;
}
-static void dlt_connection_destroy_receiver(DltConnection *con)
+STATIC void dlt_connection_destroy_receiver(DltConnection *con)
{
if (!con)
return;
@@ -189,7 +189,7 @@ static void dlt_connection_destroy_receiver(DltConnection *con)
*
* @return DltReceiver structure or NULL if none corresponds to the type.
*/
-static DltReceiver *dlt_connection_get_receiver(DltDaemonLocal *daemon_local,
+STATIC DltReceiver *dlt_connection_get_receiver(DltDaemonLocal *daemon_local,
DltConnectionType type,
int fd)
{