cosmetic: Add missing \n on log line

The final log lone in find_endpoint() lacks the \n causing a messed
up log output.

- Add missing \n

Change-Id: I97fca654b199dfb7aae2359322a56c6d0bae9599
This commit is contained in:
Philipp Maier 2018-02-02 11:48:16 +01:00
parent af07f66ca3
commit b911b879d8
1 changed files with 1 additions and 1 deletions

View File

@ -202,7 +202,7 @@ static struct mgcp_endpoint *find_free_endpoint(struct mgcp_endpoint *endpoints,
}
}
LOGP(DLMGCP, LOGL_ERROR, "Not able to find a free endpoint");
LOGP(DLMGCP, LOGL_ERROR, "Not able to find a free endpoint\n");
return NULL;
}