From: Jonathan Rajotte Date: Fri, 5 Jun 2020 15:30:49 +0000 (-0400) Subject: Clean-up: replace space by tabs X-Git-Tag: v2.13.0-rc1~617 X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=commitdiff_plain;h=4a76dfd303409d7a6293aa8bafa8103748c1cf37;ds=inline Clean-up: replace space by tabs Signed-off-by: Jonathan Rajotte Signed-off-by: Jérémie Galarneau Change-Id: I86adff6db8bc4bb681ffe06530fd98ffbc03d3c5 --- diff --git a/src/bin/lttng-sessiond/client.c b/src/bin/lttng-sessiond/client.c index 9f9afa25a..f6f802869 100644 --- a/src/bin/lttng-sessiond/client.c +++ b/src/bin/lttng-sessiond/client.c @@ -2353,8 +2353,8 @@ static void *thread_manage_clients(void *data) if (ret) { PERROR("close"); } - } - sock = -1; + } + sock = -1; /* * TODO: Inform client somehow of the fatal error. At * this point, ret < 0 means that a zmalloc failed @@ -2396,8 +2396,8 @@ static void *thread_manage_clients(void *data) if (ret) { PERROR("close"); } - } - sock = -1; + } + sock = -1; clean_command_ctx(&cmd_ctx); diff --git a/src/common/runas.c b/src/common/runas.c index 5d63f640e..e30871c5c 100644 --- a/src/common/runas.c +++ b/src/common/runas.c @@ -667,9 +667,9 @@ int do_send_fds(int sock, const int *fds, unsigned int fd_count) /* Return 0 as this is not a fatal error. */ return 0; } - } + } - len = lttcomm_send_fds_unix_sock(sock, fds, fd_count); + len = lttcomm_send_fds_unix_sock(sock, fds, fd_count); return len < 0 ? -1 : 0; }