mirror of
https://github.com/apache/nuttx-apps.git
synced 2025-10-22 07:31:51 +08:00
apps: remove space befone newline in logs
Signed-off-by: Petro Karashchenko <petro.karashchenko@gmail.com>
This commit is contained in:

committed by
Xiang Xiao

parent
ced74a064d
commit
5ac15130db
@@ -482,7 +482,7 @@ static inline int lesp_read_ipd(int sockfd, int len)
|
||||
|
||||
sock = get_sock(sockfd);
|
||||
|
||||
ninfo("Read %d bytes for socket %d \n", len, sockfd);
|
||||
ninfo("Read %d bytes for socket %d\n", len, sockfd);
|
||||
|
||||
if (sock == NULL)
|
||||
{
|
||||
@@ -558,7 +558,7 @@ static inline int lesp_read_ipd(int sockfd, int len)
|
||||
|
||||
if (sock->sem)
|
||||
{
|
||||
ninfo("post %p \n", sock->sem);
|
||||
ninfo("post %p\n", sock->sem);
|
||||
sem_post(sock->sem);
|
||||
}
|
||||
}
|
||||
@@ -707,7 +707,7 @@ static int lesp_read(int timeout_ms)
|
||||
}
|
||||
while ((ret <= 0) && (g_lesp_state.and == lesp_eNONE));
|
||||
|
||||
ninfo("lesp_read %d=>%s and and = %d \n", ret, g_lesp_state.bufans,
|
||||
ninfo("lesp_read %d=>%s and and = %d\n", ret, g_lesp_state.bufans,
|
||||
g_lesp_state.and);
|
||||
|
||||
return ret;
|
||||
@@ -1262,7 +1262,7 @@ static void *lesp_worker(void *args)
|
||||
|
||||
UNUSED(args);
|
||||
|
||||
ninfo("worker Started \n");
|
||||
ninfo("worker Started\n");
|
||||
|
||||
while (worker->running)
|
||||
{
|
||||
|
Reference in New Issue
Block a user